IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> Python知识库 -> linux下 pyskl环境(PoseConv3D)的配置--从零开始的保姆级教程 -> 正文阅读

[Python知识库]linux下 pyskl环境(PoseConv3D)的配置--从零开始的保姆级教程

linux下 pyskl环境的配置–从配置anaconda开始的保姆级教程

使用清华镜像装个anaconda,xxx是版本

?wget https://mirrors.tuna.tsinghua.edu.cn/anaconda/archive/xxx?

我这里选用https://mirrors.tuna.tsinghua.edu.cn/anaconda/archive/Anaconda3-2022.05-Linux-x86_64.sh
下载好后安装anaconda:

bash Anaconda3-2022.05-Linux-x86_64.sh

装好后把anaconda加入环境变量后激活bashrc文件

source ~/.bashrc

之后添加镜像(可加可不加)

参考如下两篇文章
Anaconda 添加清华镜像源_不要焦绿的博客-CSDN博客_添加清华镜像源

修改pip install镜像源_xupeng1644的博客-CSDN博客_pip 镜像修改
创建个新环境,我用python版本3.9的失败了,换成3.8成功

conda create --name pyskl python=3.8
conda activate pyskl

参考官方的installation,要先安装个pytorch并且version smaller than 1.11.0 and larger (or equal) than 1.5.0
我这里服务器的版本是cuda11.1,去pytorch官网找旧版本
最后使用1.9.1版本的torch

pip install torch==1.9.1+cu111 torchvision==0.10.1+cu111 torchaudio==0.9.1 -f https://download.pytorch.org/whl/torch_stable.html

把项目克隆到本地

git clone https://github.com/kennymckormick/pyskl.git
cd pyskl

直接装太慢了,加个镜像,如下:

pip install -r requirements.txt  -i https://pypi.tuna.tsinghua.edu.cn/simple
pip install -e .  -i https://pypi.tuna.tsinghua.edu.cn/simple

安装mmmmcv-full参考如下文章,找到对应的版本
我这里选用的是mmcv_full-1.5.0-cp38-cp38-manylinux1_x86_64.whl
安装mmcv-full_大笨钟47的博客-CSDN博客_mmcv-full安装
安装mmpose和mmdet
参考如下博文:
open-mmlab / mmpose安装、使用教程_Charms@的博客-CSDN博客_mmpose安装

另外,如果安装poseval失败,参考以上博文使用其他方法安装后还要把requirements.txt里的poseval这一项删除,重新运行一次

pip install -r requirements.txt

至此,环境配置完成。
按照官方提示运行demo

# Before running the demo, make sure you have installed mmcv-full, mmpose and mmdet. You should first install mmcv-full, and then install mmpose, mmdet.
# You should run the following scripts under the directory `$PYSKL`
# Running the demo with PoseC3D trained on NTURGB+D 120 (Joint Modality), which is the default option. The input file is demo/ntu_sample.avi, the output file is demo/demo.mp4
python demo/demo_skeleton.py demo/ntu_sample.avi demo/demo.mp4
# Running the demo with STGCN++ trained on NTURGB+D 120 (Joint Modality). The input file is demo/ntu_sample.avi, the output file is demo/demo.mp4
python demo/demo_skeleton.py demo/ntu_sample.avi demo/demo.mp4 --config configs/stgcn++/stgcn++_ntu120_xsub_hrnet/j.py --checkpoint http://download.openmmlab.com/mmaction/pyskl/ckpt/stgcnpp/stgcnpp_ntu120_xsub_hrnet/j.pth

跑到一半报错,发现作者把一个函数删了,问题不大。
接下来开始Training & Testing
参考官方的命令:

# Training
bash tools/dist_train.sh {config_name} {num_gpus} {other_options}
# Testing
bash tools/dist_test.sh {config_name} {checkpoint} {num_gpus} --out {output_file} --eval top_k_accuracy mean_class_accuracy

我这里选用最PoseConv3D以及数据集light_gym,打开pyskl/configs/posec3d/c3d_light_gym/joint.py
修改

ann_file = 'data/gym/gym_hrnet.pkl'

这一行改成自己按照官方提示下载的gym_hrnet.pkl文件的路径
运行:

bash tools/dist_train.sh configs/posec3d/c3d_light_gym/joint.py 2 

可以看到运行成功
在这里插入图片描述
最后结果:在这里插入图片描述

  Python知识库 最新文章
Python中String模块
【Python】 14-CVS文件操作
python的panda库读写文件
使用Nordic的nrf52840实现蓝牙DFU过程
【Python学习记录】numpy数组用法整理
Python学习笔记
python字符串和列表
python如何从txt文件中解析出有效的数据
Python编程从入门到实践自学/3.1-3.2
python变量
上一篇文章      下一篇文章      查看所有文章
加:2022-10-22 21:11:19  更:2022-10-22 21:13:34 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/15 6:53:52-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码