HHTseng / video-classification

Tutorial for video classification/ action recognition using 3D CNN/ CNN+RNN on UCF101
916 stars 216 forks source link

incredible incorrect rate in CRNN #23

Open haoyijiang opened 4 years ago

haoyijiang commented 4 years ago

The accuracy rate in my experiment is super low,about 1.02%. In the python file of check prediction, optimizer file is not used?

HHTseng commented 4 years ago

Hi, the 1.02% accuracy is in training or testing? have you adjusted the default parameters? it's possible to have this accuracy if the learning rate is not proper.

Also in the check prediction, the CRNN model parameters are reloaded purely for prediction purpose, not for retraining, so the optimizer will not be used. But of course, you may adjust it according to your need. Hope this answers your question.