C3W1 birdbox assignment

Thank you Chris, I just managed to submit and it passed, but there was still one small issue.
This line:
predicted_bboxes = model.predict(normalized_images, astype(‘float32’))

Should be:
predicted_bboxes = model.predict(normalized_images.astype(‘float32’))

1 Like

Thanks, Kaloyan! That typo is now fixed!