最近跑模型需要下载,发现 python torch 自带的下载慢得跟乌龟一样,只能自己手动下载,这里记录一下。
下载文件:
https://download.pytorch.org/models/vit_h_14_swag-80465313.pth
服务器:深研院某服务器
Linux 自带的 wget:
wget https://download.pytorch.org/models/vit_h_14_swag-80465313.pth ~/
自带的 curl:
curl -o ~/vit_h_14_swag-80465313.pth https://download.pytorch.org/models/vit_h_14_swag-80465313.pth
axel
需要安装,可以用 sudo apt install axiv
但我账户没 root 权限,所以用 conda install -c conda-forge axel
axel -o ~/ https://download.pytorch.org/models/vit_h_14_swag-80465313.pth
axel 加上 -N
可以断点续传
aria2
下载方式同上
sudo apt install aria2
conda install -c conda-forge aria2
aria2c -d ~/ https://download.pytorch.org/models/vit_h_14_swag-80465313.pth
aria2 自带断点续传
速度来说好像都差不多,看网络波动。
标签:swag,命令行,80465313,pth,vit,Linux,download,软件,14 From: https://www.cnblogs.com/coldchair/p/18042182