Visualization During Training #2286
Replies: 5 comments
-
Hi @FabianSchuetze, |
Beta Was this translation helpful? Give feedback.
-
Hey @FabianSchuetze you can try to use MMSegWandbHook. You can find more info in the PR that added this feature. |
Beta Was this translation helpful? Give feedback.
-
Hi @FabianSchuetze, |
Beta Was this translation helpful? Give feedback.
-
Thanks for the kind and informative replies! Indeed, I missed that wandb already logs the predictions and some images, but I am not sure the results are very informative (at least with my settings). I use the following settings:
With these settings, two problems arise for me:
I think this behaviour stems from the following functions: The function Should I somehow change my settings or do you have any other suggestions for me, @ayulockin? Thanks again for your help! |
Beta Was this translation helpful? Give feedback.
-
Hey @FabianSchuetze, apologies for the delayed reply. Mechanics of logging
This is true; it logs the ground truth image + associated masks. We need to call this once as the evaluation samples need not change (ideally).
We call
Yes we are not normalizing the mask. The output of model is unnormalized mask always? Can we dynamically figure out that the mask is normalized or not? I hope your concern around Mask issue
If you have two classes with zero and one, I think it should ideally render the mask properly. It might be a bug in |
Beta Was this translation helpful? Give feedback.
-
Thanks for the wonderful work, it is a pleasure to use mmsegmentation.
Can I somehow visualize the training and validation predictions during the training process? I would like to dump the predicted images periodically to the hard-disk, (or even better to wandb). Should I maybe use hooks from mmgeneration for that? Could they be linked with wandb? If this is not possible currently, would you welcome a PR for that?
Beta Was this translation helpful? Give feedback.
All reactions