-
Notifications
You must be signed in to change notification settings - Fork 45.7k
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
Tensorboard Eval Images with TF-Vision #11270
Comments
Hi @RayanMoarkech
and I found that it is working, here is the notebook that I worked on. Please check it here is the screenshot. ![]() |
Hi @RayanMoarkech, |
I figured how to log the images to tensorboard. It does not seem to be a supported communication between tensorfow and tensorboard. So it needs to be implemented manually. Here it is for whomever is searching: You first need to set the log image to true:
Then you will need to define a Callable Orbit Action method that will take the image from the log and push it to tensorboard. It is important to delete the image from the data, since tensorflow will not know how to log an image summary. (here is the broken part that needs to be fixed internally).
Lastly, you need to add the callable to the
@bharatjetti I am not sure if you want to reopen the issue to fix something internally. The issue is when |
Prerequisites
Please answer the following questions for yourself before submitting an issue.
1. The entire URL of the file you are using
https://www.tensorflow.org/tfmodels/vision/object_detection#load_logs_in_tensorboard
2. Describe the bug
I am following this documentation, https://www.tensorflow.org/tfmodels/vision/object_detection#load_logs_in_tensorboard
When I open tensorboard, and select images, I get "No image data was found."
I also tried to add
EXPERIMENT_CONFIG.task.allow_image_summary = True
, but I got an error, even with the dataset and code given by the documentation.The error:
The code:
3. Steps to reproduce
Now, try to train again with
EXPERIMENT_CONFIG.task.allow_image_summary = True
4. Expected behavior
I would like to see the evaluated images per epochs saved on tensorboard.
5. Additional context
Let me know if you need anything extra
6. System information
The text was updated successfully, but these errors were encountered: