-
Notifications
You must be signed in to change notification settings - Fork 232
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Accuracy 0.0, when i training custom dataset. #76
Comments
I think your learning rate is too big, set it to 0.001 when start training. |
Thank you, that really worked. Now best accuracy = 0.58 |
I've tried many times even if the learning rate is set very small, the best accuracy would not be higher than 0.6. Maybe we should use more images for training. |
Set the training epochs parameter to a larger value (for example, 100), increase the test frequency (decrease the --test_interval parameter), and carefully observe the accuracy of each test to see if there are non-zero values. In my training, using my own data set (80,000 for training set and 20,000 for test set), after 15 iterations of the network, the accuracy has reached more than 0.94 (the learning rate is 0.00001 at this time), and then continue training (set The epochs value is greater than 15), the train_*.py program will automatically adjust the learning rate back to 0.1, the loss will become larger again, and the accuracy will be reduced to 0. |
Hi, when i training model with custom data set, the accuracy is always 0. I modified the list of CHARS and license plate length, what could be the problem?
The text was updated successfully, but these errors were encountered: