RepNet-Pytorch
RepNet-Pytorch copied to clipboard
Temporal repetition counting
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...
can you reshare it again?
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:  Can you give me some tips ?