加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
export_libtorch.bat 639 Bytes
一键复制 编辑 原始数据 按行查看 历史
焦虑的羽毛 提交于 2024-03-26 10:42 . 首次提交
REM ģת
set YOLOV5_DIR=E:\src\yolov5
set "script_dir=%~dp0"
call D:\ProgramData\anaconda3\condabin\conda.bat activate yolov5
::pip install onnx
cd /D %YOLOV5_DIR%
python export.py --weights %script_dir%runs/train/exp2/weights/best.pt --img 640 --device cpu --include torchscript
move %script_dir%runs\train\exp2\weights\best.torchscript.pt %script_dir%libtorch.torchscript.cpu.pt
python export.py --weights %script_dir%runs/train/exp2/weights/best.pt --img 640 --device 0 --include torchscript
move %script_dir%runs\train\exp2\weights\best.torchscript.pt %script_dir%libtorch.torchscript.gpu.pt
echo "libtorchת"
pause
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化