resume training with My own dataset acc problem
See original GitHub issuethanks. my goal is to resume training with my own dataset. My dataset has only one special character + 0-9
and a-z
(38 char’s). My training
images are 316,000
and validation
images are 144,000
images. during training
, this line of main.py
print("correct / total: %d / %d, " % (n_correct, n_total))
prints n_total
:64,000
. why 64000? None of my training
and testing
images are 64,000
. other note is that acc
during training reach 99%
but when i load trained model and test some images with demo.py
, acc
is 0
and all of predictions are wrong
. I resume
training with your demo.pth
but actually, results of demo.pth
is very very better than new trained models.
Can you help me what was wrong? thanks
Issue Analytics
- State:
- Created 4 years ago
- Comments:8 (2 by maintainers)
Top Results From Across the Web
Resume training with custom dataset with yolov5 #1560 - GitHub
Suppose I want to train my model for 4000 epoch but after executing 500 epoch, I want to resume training from 501, how...
Read more >How to Train YOLOv7 on a Custom Dataset - Roboflow Blog
Start with our YOLOv7 Colab notebook and select File > Save a Copy in Drive to fork our notebook to your own Google...
Read more >Resuming Training PyTorch - machine learning - Stack Overflow
Where I'd like to be able to load a model, and start training from the epoch where model was saved. So far I...
Read more >Analyze Data in Excel - Microsoft Support
Analyze Data in Excel empowers you to understand your data through high-level visual summaries, trends, and patterns. Simply click a cell in a...
Read more >Frequently Asked Questions - Galaxy Training!
Troubleshooting errors. When you get a red dataset in your history, it means something went wrong. But how can you find out what...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
My problem solved! and get beter results. thanks for your supports:
Please modify the strategy to evaluate and save your model: https://github.com/Canjie-Luo/MORAN_v2/blob/2cd40c41d6041f54efdbdcb7d7e081231168c468/main.py#L241-L245