You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jul 2, 2021. It is now read-only.
I use your train.py to train fast_rcnn and modify the evaluate extension and I found the invoke_before_training=True.
I hope to evaluate the model before train and I found it not work as I expected?
The text was updated successfully, but these errors were encountered:
What do you mean it is not working as expected?
Is it running or is it not reporting values as expected?
I think LogReport needs to be initialized before the Evaluator.
You can evaluate your model outside of the training loop by
evaluator=DetectionVOCEvaluator(
test_iter, model.faster_rcnn, use_07_metric=True,
label_names=voc_detection_label_names)
print(evaluator.evaluate()) # the evaluation with a randomly initialized model.
I use your train.py to train fast_rcnn and modify the evaluate extension and I found the invoke_before_training=True.
I hope to evaluate the model before train and I found it not work as I expected?
The text was updated successfully, but these errors were encountered: