YOLO_v3_tutorial_from_scratch
YOLO_v3_tutorial_from_scratch copied to clipboard
Accompanying code for Paperspace tutorial series "How to Implement YOLO v3 Object Detector from Scratch"
Hello, I was following your tutorial and tried to use tiny version of yolov3 model, but I stucked in step 3. But, the normal version is working fine there. Error...
Loading Batch that is displayed on the terminal after completeion of detection what is that time,Can u explain? @ayooshkathuria
Just delete semicolon Thanks
the code in tutorial is different from here: **github:** ```python img = (letterbox_image(img, (inp_dim, inp_dim))) ``` **in tutorial:** ```python img = cv2.resize(img, (inp_dim, inp_dim)) ``` which will make scaling step...
Train
Hello, i am a student come from Taiwan, i expectation the train code, please>
In the IoU function ` #Intersection area inter_area = torch.clamp(inter_rect_x2 - inter_rect_x1 + 1, min=0) * torch.clamp(inter_rect_y2 - inter_rect_y1 + 1, min=0) inter_areaa = torch.clamp(inter_rect_x2 - inter_rect_x1, min=0) * torch.clamp(inter_rect_y2...
Why sort bbox with objectness score (Pobj) rather than individual class score (Pc) util.py line 149 `conf_sort_index = torch.sort(image_pred_class[:,4], descending = True )[1]` I searched NMS sort bbox with Pc...