We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
t1 = time.time() if YOLO_FRAMEWORK == "tf": pred_bbox = Yolo.predict(image_data)
predict gives nan value after the first image. This gives very low mAP
The text was updated successfully, but these errors were encountered:
Change it to this
t1 = time.time() if YOLO_FRAMEWORK == "tf": Yolo.load_weights(f"./checkpoints/{TRAIN_MODEL_NAME}") pred_bbox = Yolo.predict(image_data)
Sorry, something went wrong.
No branches or pull requests
predict gives nan value after the first image.
This gives very low mAP
The text was updated successfully, but these errors were encountered: