-
Beta Was this translation helpful? Give feedback.
Answered by
37Lime
Feb 21, 2025
Replies: 1 comment 1 reply
-
Greetings @s2005lg, You are giving the model a relatively simple problem. This means that the loss value will be low. Hence, try changing the rounding of your loss value in the print statement: Allowing for more decimals in the print statement should make the loss visible to you. I hope this helps. Best wishes. |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
s2005lg
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Greetings @s2005lg,
You are giving the model a relatively simple problem. This means that the loss value will be low.
Hence, try changing the rounding of your loss value in the print statement:
print(f"Epoch: {epoch} | Loss: {loss:.10f} | Test Loss: {test_loss:.10f}
Allowing for more decimals in the print statement should make the loss visible to you.
I hope this helps.
Best wishes.