You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
486 B

# 在这里进行搜索 https://modelscope.cn/models
# 1、用命令行下载模型
# modelscope download --model=OpenBMB/MiniCPM-V-2_6-int4 --local_dir d:/model
# modelscope download --model=Systran/faster-distil-whisper-large-v3 --local_dir d:/model
# 2、用代码下载模型
from modelscope import snapshot_download
#snapshot_download('OpenBMB/MiniCPM-V-2_6-int4', cache_dir='d:/model')
snapshot_download('Systran/faster-distil-whisper-large-v3', cache_dir='d:/model')