You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For the KMaX-DeepLab model, are there detailed steps to evaluate and test model after training the model? How to output visual results using COCO data sets? I hope someone can help me with that. Thank you for your kindness.
The text was updated successfully, but these errors were encountered:
Coming to the output visualization,
When you run the above script, it will create a folder 'vis' inside the {dir_name/experiment_name}, and in that it will save visualizations of some of the samples. If you want to see the visualization for all samples, you can edit:
deeplab2/trainer/evaluator.py,
if (self._enable_visualization and
(self._sample_counter < self._num_vis_samples)):
Remove the condition of "self._sample_counter < self._num_vis_samples" to visualizations of all the images.
For the KMaX-DeepLab model, are there detailed steps to evaluate and test model after training the model? How to output visual results using COCO data sets? I hope someone can help me with that. Thank you for your kindness.
The text was updated successfully, but these errors were encountered: