GaitSet icon indicating copy to clipboard operation
GaitSet copied to clipboard

环境配置详细指南

Open yym68686 opened this issue 11 months ago • 1 comments

点击链接下载数据集 [CASIA-B](http://www.cbsr.ia.ac.cn/GaitDatasetB-silh.zip)

解压脚本 unzip.sh

#!/bin/bash
unzip "$1"
folder=$(unzip -l "$1" | grep -m1 '^[^/]\+/$' | awk '{print $4}')
for f in "$folder"/*.tar.gz; do
  tar -xzf "$f" -C "$folder"
  rm "$f"
done

解压命令

sh unzip.sh GaitDatasetB-silh.zip

pytorch 环境安装

conda create -n GaitSet python=3.6
source deactivate
conda activate GaitSet
conda install pytorch=0.4.1 cuda90 -c pytorch

数据集预处理,先安装 scipy opencv-python

pip install scipy imageio xarray
pip install --no-cache-dir --only-binary=:cp36: opencv-python==4.1.2.30

修改一下 pretreatment.py,自 SciPy 1.0起, scipy.misc.imsave 已被弃用,并在 SciPy 1.2 中被移除。

+ import imageio
- scisc.imsave(save_path, img)
+ imageio.imwrite(save_path, img)

数据集预处理

python pretreatment.py --input_path='root_path_of_raw_dataset' --output_path='root_path_for_output'

修改 config.py 里面的数据集目录。然后开始训练:

python train.py

yym68686 avatar Jul 06 '23 12:07 yym68686