【发布时间】:2019-01-29 09:03:26
【问题描述】:
我在 tensorflow 对象检测中使用了检测模型 zoo 中的 ssd_mobilenet_v1_coco。我目前正在通过运行来训练模型
python legacy/train.py --logtostderr --train_dir=trainingmobile/ --pipeline_config_path=trainingmobile/pipeline.config
我想通过运行 eval.py 来运行评估作业以获取 IOU 和 PR 曲线等其他指标,但我不知道该怎么做。我可以运行命令
python legacy/eval.py \
--logtostderr \
--checkpoint_dir= path/to/checkpoint \
--eval_dir= path/to/eval \
--pipeline_config_path= path/to/config
然后我运行命令
tensorboard --logdir=path/to/eval
张量板仅显示测试图像输出。如何获取 IOU 和 PR Curve 等其他指标?
【问题讨论】:
标签: tensorflow object-detection tensorboard