Show more images in Tensorboard - Tensorflow object detection

拟墨画扇 提交于 2019-12-03 08:11:06

It should be the num_visualizations parameter in your eval_config (cf. eval.proto code).

Ron Kent

I've been able to get this to work in Tensorboard 1.11.0 by editing the object_detection/protos/eval.proto file, then re-running protoc (see the Tensorflow docs). For example, this line in eval.proto would enable 100 examples (instead of the default 10):

optional uint32 num_visualizations = 1 [default=100];

This probably has an impact on system memory, browser performance, eval performance, etc.. so use with caution.

Probably the easiest way is to add command line argument --samples_per_plugin

Full example

tensorboard --logdir . --samples_per_plugin=images=100

https://github.com/tensorflow/tensorboard/issues/1012

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!