# 在这里进行搜索 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')