YuqiCheng

Results 3 issues of YuqiCheng

![image](https://user-images.githubusercontent.com/39451786/147396843-f0a002e6-b128-486c-8fd0-c8bdc0b7730c.png) I found that after 10 epochs, the model almost converged, but the loss_xy did not decrease. I don’t know if the loss will decrease again if I continue to...

I want to know if I can directly import the downloaded parameters (yolov4.conv.137.pth) to detect the images in the COCO dataset. In addition, what is the difference between yolov4.conv.137.pth and...

My code: `if __name__ == '__main__': import torch import cv2 input_size = 224 img = cv2.imread("OIP-C.jpg") img = cv2.resize(img,(224,224)) img = rearrange(img, 'h w c -> c h w') img...