Xiangrong Chen
Xiangrong Chen
此处添加PicoDet的复现代码,添加PicoDet-s.yaml, PicoDet-m.yaml, PicoDet-l.yaml, PicoDet-x.yaml,若复现出现问题或关于PicoDet的复现有新的想法,欢迎在此issue下方讨论~
大佬,关注您很久了
尊敬的作者,您好,请教您一个问题: 在复现kdk的代码中,我发现了关于mask的三个函数 ``` def _get_gt_mask(logits, target): target = target.reshape(-1) mask = torch.zeros_like(logits).scatter_(1, target.unsqueeze(1), 1).bool() return mask def _get_other_mask(logits, target): target = target.reshape(-1) mask = torch.ones_like(logits).scatter_(1, target.unsqueeze(1), 0).bool() return mask def...
``` (py36) E:\pytorch\edgeai-yolov5-yolo-pose>python export.py --weights weights/Yolov5s6_pose_640_ti_lite.pt --img 960 --batch 1 --simplify --export-nms Namespace(batch_size=1, device='0', dynamic=False, export_nms=True, grid=False, img_size=[960, 960], simplify=True, weights='weights/Yolov5s6_pose_640_ti_lite.pt') YOLOv5 2022-6-6 torch 1.8.1+cu101 CUDA:0 (NVIDIA GeForce GTX 950M,...
### Before Asking - [X] I have read the [README](https://github.com/meituan/YOLOv6/blob/main/README.md) carefully. 我已经仔细阅读了README上的操作指引。 - [ ] I want to train my custom dataset, and I have read the [tutorials for training...
大佬写的cmake文件很详细,我觉得真的很不错 我这边有个开源项目,可否借鉴大佬的代码自己搭建一个mnn+yolov5的sdk,或者把大佬添加到贡献者这边 [https://github.com/ppogg/YOLOv5-Lite](https://github.com/ppogg/YOLOv5-Lite)
Whether keypoint detection support?