All seems to be wowrking fine, when i make the final training i get 0.91 loss, and when i run the comparaison cell i get:
237
(4,)
False
False
False
and later a 0.0 score
-What could be the problem ?
All seems to be wowrking fine, when i make the final training i get 0.91 loss, and when i run the comparaison cell i get:
237
(4,)
False
False
False
and later a 0.0 score
-What could be the problem ?
The problem could be in many places, as a starter there are quite a few posts about this assignment, check them first!
itβs working rn:
i had to replace :
checkpoint_path = β/content/models/research/object_detection/test_data/checkpoint/ckpt-0β
model
to the temporary model checkpointcheckpoint = {GRADER CODE REMOVED BY MODERATOR}
checkpoint.restore(checkpoint_path).expect_partial()### END CODE HERE ###
by:
checkpoint =tf.train.Checkpoint(model = detection_model)
tmp_model_checkpoint.restore(checkpoint_path).expect_partial()#diffrence here !!!11