- 博客(24)
- 收藏
- 关注
原创 mmcv报错问题
问题:"site-packages\mmcv\utils\config.py " 508行 unexpected keyword argument ‘verify‘解决:508行:text, _ = FormatCode(text, style_config=yapf_style, verify=True)删掉, verify=True。
2023-12-06 16:43:48 230
原创 TypeError: can‘t convert cuda:0 device type tensor to numpy. Use Tensor.cpu() to copy the tensor to
return self.numpy()改为 return self.cpu.numpy()_tensor.py文件中。
2023-09-19 21:45:11 232
原创 MMPose使用笔记
姿势数据集的元信息通常包括关键点和骨架的定义、对称特征和关键点属性(例如属于上半身或下半身、权重和西格玛)。这些信息对于数据预处理、模型训练和评估非常重要。在 MMpose 中,数据集元信息存储在$MMPOSE/configs//datasets下的配置文件中。
2023-09-14 18:43:00 119
原创 安装mmaction2记录
为了验证 MMAction2 是否安装正确,我们提供了一些示例代码来运行推理演示。您将在终端看到前5个标签及其对应的分数。安装依赖包和mmaction2。第一步:下载配置文件和权重文件。4.下载github上的代码。5.安装mmcv-full。3.安装pytorch。
2023-09-10 21:36:17 270 1
原创 HRNet官方代码调试过程中出现的问题及解决方法
以文件名为nms.pyx为例,新建一个用于编译的.py文件,比如set up.py,内容如下。即可完成编译,最终会生成一个.c文件。然后继续执行setup.py文件。然后下载vs 出现其他错误!首先确保安装了Cython。
2023-08-11 17:09:40 186 1
原创 RuntimeError: indices should be either on cpu or on the same device as the indexed tensor (cpu)
yoloV7运行出现的错误
2023-04-05 14:59:55 1027
原创 《机器学习实战》学习第一章
from numpy import *#随机生成一个4乘4的矩阵randMat=mat(random.rand(4,4))print(randMat)#生成该矩阵的逆矩阵invRandMat=randMat.Iprint(invRandMat)#矩阵乘逆矩阵生成单位矩阵,但是有误差myEye=randMat*invRandMatprint(myEye)print(eye(4))#计算误差print(myEye-eye(4))
2022-10-15 11:12:51 293
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人