Accuracy, Precision, Recall always the same value #14608
Unanswered
michaelgroeger
asked this question in
code help: CV
Replies: 1 comment 2 replies
-
weird, this shouldn't happen. For started i'd start inspecting the step graphs, are they different or same? If they are different then the issue might be in the epoch accumulation. For that can you share a reproducible script? |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello everyone,
Currently I am familiarising myself with pytorch-lightning. I train a simple CNN on Cifar-100 and log the metrics named in the title to be send to weights&biases. The whole process runs very smooth, however I get for each step & epoch the same values for my metrics. This happens on different datasets and runs always. That shouldn't be the case right? Any input/help on this is very much appreciated.
Here is my relevant code:
This is for instance the output of the trained network on the test set after 8 Epochs:
This the training output for Epoch 7:
Epoch 7: 100%|█| 197/197 [00:07<00:00, 26.02it/s, loss=1.73, v_num=jy1o, loss_step=1.630, train_accuracy_step=0.500, train_recall_step=0.500, train_precision_step=0.500, val_loss_step=2.240, val_accuraEpoch 7, global step 1256: 'val_loss' was not in top 1
Beta Was this translation helpful? Give feedback.
All reactions