感知自然动物目标识别
蒲公英 2025-12-03 inatureyolo
# 环境搭建
- 创建Anaconda虚拟开发环境
conda create --name ainature python=3.12
1
- 安装基础依赖
pip install numpy matplotlib
pip install librosa scikit-learn soundfile
pip install pandas
pip install tqdm
1
2
3
4
2
3
4
- 安装Pytorch GPU依赖
pip install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu126
1