01 2022 档案

摘要:yolov5:报错1:OMP: Error #15: Initializing libiomp5md.dll, but found libiomp5md.dll already initialized. 解决: import osos.environ["KMP_DUPLICATE_LIB_OK"] 阅读全文
posted @ 2022-01-16 11:31 cfancy 阅读(214) 评论(0) 推荐(0)
摘要:输入命令:【 sudo apt upgrade 】命令进行系统更新 Linux 命令: scp 用于Linux之间复制文件和目录 scp是secure copy 的缩写,scp是Linux系统下基于ssh登录进行安全的远程文件cpoy命令 scp是加密的,rcp是不加密的 从本地复制到远程: scp 阅读全文
posted @ 2022-01-10 14:36 cfancy 阅读(93) 评论(0) 推荐(0)
摘要:a = [[1,2,3,4],[5,6,7,8],[11,12,13,14],[23,24,12,11]] b = [[5,6,7,8],[23,24,12,11]] c = [] for i in a: if i not in b: c.append(i) print(c) 阅读全文
posted @ 2022-01-06 17:13 cfancy 阅读(320) 评论(0) 推荐(0)
摘要:pPose_nms.py文件中 ori_bboxes = bboxes_to_tensor.clone()报错:AttributeError: 'numpy.ndarray' object has no attribute 'clone'修改:bboxes_to_tensor = torch.fro 阅读全文
posted @ 2022-01-04 16:09 cfancy 阅读(220) 评论(0) 推荐(0)