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
I don't really understand the [self.boxes, self.scores, self.classes] in self.generate().
My purpose is to use yolo4.pb to do some prediction just in tensorflow, but here [self.boxes, self.scores, self.classes] do some tricks in keras and I don't know how to do this exchange using yolo4.pb.
and one part of pred_sbbox (its shape is (1, 52, 52, 255), 255 is 3 * 85) is like this:
It's strange! The 4th column should be the score, but they are all negative, so do the right columns.
Why so many negetive value?
Thanks for the coming help!
One of the correct results I think are like this: This is from yolo3, and pred_sbbox's shape is (1,52,52,3,85)
I don't really understand the
[self.boxes, self.scores, self.classes]
inself.generate()
.My purpose is to use yolo4.pb to do some prediction just in tensorflow, but here
[self.boxes, self.scores, self.classes]
do some tricks in keras and I don't know how to do this exchange using yolo4.pb.Thanks for the coming help!
I use amir-abdi/keras_to_tensorflow convert the yolo4.h5 to yolo4.pb. The format of outputs are different compared to using yolo4.h5.
The text was updated successfully, but these errors were encountered: