Easy training on custom dataset. Various backends (MobileNet and SqueezeNet) supported. A YOLO demo to detect raccoon run entirely in brower is accessible at https://git.io/vF7vI (not on Windows).
What does the line 190 do?
class_mask = y_true[..., 4] tf.gather(self.class_wt, true_box_class) self.class_scale
Besides, I read the help doc about tf.gather(params,indices,), and it said the indices should be 0-D or1-D,and I test it in tensorflow, but I still didn't get it.
What does the line 190 do? class_mask = y_true[..., 4] tf.gather(self.class_wt, true_box_class) self.class_scale
Besides, I read the help doc about tf.gather(params,indices,), and it said the indices should be 0-D or1-D,and I test it in tensorflow, but I still didn't get it.