fizyr / keras-retinanet

Keras implementation of RetinaNet object detection.
Apache License 2.0
4.38k stars 1.96k forks source link

The result of test is different from evaluate #1484

Closed Jinbang129 closed 4 years ago

Jinbang129 commented 4 years ago

I find the result of model test (from the order: boxes, scores, labels = model.predict_on_batch(inputs)) is different from the result of evaluation (from the evaluate.py). Could you please help me to understand this? Thank you!

Jinbang129 commented 4 years ago

I already find the reason for this difference. It is the resize operation, which is used in evaluate, but not in test.