LongxingTan / tfyolo

tfyolo: Efficient Implementation of Yolov5 in TensorFlow
229 stars 71 forks source link

Can you point out the meaning of this number in label_anchor #18

Open hieuth133 opened 3 years ago

hieuth133 commented 3 years ago

Thank you for the wonderful project. Can you please show what is the meaning of number 6 in this line of code?

https://github.com/LongxingTan/Yolov5/blob/88acfd988decc4cc78335cfb6eb50f1975294c1f/yolo/dataset/label_anchor.py#L35

LongxingTan commented 3 years ago

@hieuth133 The last dimension of y_true has 6 values.

hieuth133 commented 3 years ago

Thank you!!