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’))