I have trained an object-detection model in Tensorflow 2 with EfficientDet. And now I am trying to evaluate the model performance on test dataset. I ran below command to evaluate model -
python model_main_tf2.py \
--model_dir=path/to/model_dir \
--pipeline_config_path=path/to/model_dir/pipeline.config \
--checkpoint_dir=path/to/checkpoint_dir
And I can see below results -
Here I can see Average-Precision for IoU=0.50 (second line) and IoU=0.75 (third line).
Now, is there any way that I can see Average-Precision for IoU=0.8 and IoU=0.9 too?
Also, can I see Average-Recall for IoU=0.8 and IoU=0.9 too?