As the title states, I would like to save the detection vs. ground truth images of the eval from Tensorboard.
From the eval proto:
// Path to directory to store visualizations in. If empty, visualization
// images are not exported (only shown on Tensorboard).
optional string visualization_export_dir = 6 [default=""];
Therefore I have added it to my model.config file as such. Keep in mind I am working from the /Object-Detection/ directory.
eval_config: {
num_examples: 57
visualization_export_dir: "bevelgear_training/eval_images/"
num_visualizations: 57
metrics_set: "pascal_voc_detection_metrics"
}
Training finishes as normal, I can see all the eval images in tensorboard BUT the /eval_images/ folder is empty.
Anyone get this working?