-
Notifications
You must be signed in to change notification settings - Fork 415
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
validation set and loss in tensorboard graph #250
Comments
Everything you are asking, you can see in the colab: https://github.com/AntonMu/TrainYourOwnYOLO#google-colab-tutorial- Hope this helps! |
it helps a bit. however i do not find the answer to why the loss has a such a steep decline between the first trainning epochs and the second ones? |
If you look at the log messages under Of course, if you freeze layers, you train only a small part of the model, and thus the loss is larger. When you unfreeze all layers, the model has more parameters to learn, and thus the loss is smaller. |
Thank you so much!
Em seg., 25 de abr. de 2022 às 05:07, AntonMu ***@***.***>
escreveu:
… If you look at the log messages under !python Train_YOLO.py, you see the
exact numbers of frozen layers in each step.
Of course, if you freeze layers, you train only a small part of the model,
and thus the loss is larger. When you unfreeze all layers, the model has
more parameters to learn, and thus the loss is smaller.
—
Reply to this email directly, view it on GitHub
<#250 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AVMLLBIZ33LICRWU7IZOU6TVGYLAZANCNFSM5T3PH7TQ>
.
You are receiving this because you authored the thread.Message ID:
***@***.***>
|
Hi @AntonMu i would like to ask you where i can find the graph related to the validation set? When i use the tensorboard only appears the loss of the trainning.
Another question is related to the loss graph from tensorboard. Can you explain to my why the loss has a such a steep decline between the first trainning epochs and the second ones?
I have another question, why do you freeze some layers in the first set of trainninf and then unfreeze them all in the last part? And how many layers do you freeze initially?
The text was updated successfully, but these errors were encountered: