-
Notifications
You must be signed in to change notification settings - Fork 23
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
Error using Visdom as exp. tracking system for image-segmentation #215
Comments
@idkwid2022 thanks for raising this issue. You are right this line : code-generator/src/templates/template-vision-segmentation/vis.py Lines 137 to 142 in f137219
is working only with TensorBoard. Would you like to suggest a fix ? Quick fix could be just to make sure that this code : code-generator/src/templates/template-vision-segmentation/main.py Lines 114 to 141 in f137219
is executed only if Another fix could be to find some common method we could call with all supported exp tracking systems... |
@vfdev-5 I don't think I have qualification for any suggestion, I'm a total newbie in this. If I may, I think it should be like in image classification template since the logger options is the same for every template (template-vision-classification/utils.py, line 213, function Anyhow, I kinda did make it run on my notebook, but I forgot which lines I changed. The main change is on vis.py, line 137:
But that's just to make it run only on visdom. So maybe like this:
Like on image classification template? I don't know about the other logging system. I'm sorry I can't be much of a help. |
@idkwid2022 no problems about your qualifications. |
I meant about how the classification template deals with different loggers. I have not use the template, so I don't know if it logs images. |
Describe the bug
AttributeError: 'VisdomLogger' object has no attribute 'writer'
Expected result
No error.
Reproduction
Please see line 137, src/templates/template-vision-segmentation/vis.py.
logger.writer.add_image
is for tensorboard, no?logger.writer.add_image
Steps to reproduce
Choose template for vision-segmentation
Choose Visdom for exp. tracking system.
The text was updated successfully, but these errors were encountered: