RepNet-Pytorch icon indicating copy to clipboard operation
RepNet-Pytorch copied to clipboard

Temporal repetition counting

Results 9 RepNet-Pytorch issues
Sort by recently updated
recently updated
newest added

https://github.com/confifu/RepNet-Pytorch/blob/b655b8090132499a29d2f4a595d174ba56ee033f/trainLoop.py#L149 raw: ``` countpred = torch.sum((y2pred > 0) / (y1pred + 1e-1), 1) count = torch.sum((y2 > 0) / (y1 + 1e-1), 1) ``` changed: ``` countpred = torch.sum((y2pred >...

I trained 15 epochs, and the test result is relatively poor. Is there something wrong with my test demo? I hope you can provide me with a test demo. Thank...

I was looking for the dataset associated with it but the download link wasn't working. I was wondering if you could provide a working link to access the dataset? Thank...

Hello, Confifu , I find you are different from Repnet paper on the *period length prediction* full connection layer. You can look the page 14 [raw RepNet paper](https://arxiv.org/pdf/2006.15418.pdf). Due to...

Saurabh Kumar, I am sravan kumar, new to Deep learning and computer vision. I tried to train RepNet model with 20% of Countix dataset but it always showing error while...

https://github.com/confifu/RepNet-Pytorch/blob/b655b8090132499a29d2f4a595d174ba56ee033f/SyntheticDataset.py#L148 SyntheticDataset.py: 125 - 149 begNoRepDur value is noRepDur ---> endNoRepDur == 0 ---> repFrames = frames[begNoRepDur : -0] ---> repFrames length is 0 ```python begNoRepDur = randint(0, noRepDur) endNoRepDur...

Hello, when i train the model, after 35 epochs, the valid loss curve is as follows: ![Screenshot from 2021-06-03 10-10-50](https://user-images.githubusercontent.com/1296332/120576321-28c20400-c455-11eb-840f-b243002387d8.png) Can you give me some tips ?