问题一:pip安装modelscope报错
pip install "modelscope[nlp]" -f https://modelscope.oss-cn-beijing.aliyuncs.com/releases/repo.html 或者 pip install "modelscope[nlp]" -f https://modelscope.oss-cn-beijing.aliyuncs.com/releases/repo.html -i https://pypi.tuna.tsinghua.edu.cn/simple 都出现错误: WARNING: Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ConnectTimeoutError(<pip._vendor.urllib3.connection.HTTPSConnection object at 0x7f1a1c5f0e10>, 'Connection to modelscope.oss-cn-beijing.aliyuncs.com timed out. (connect timeout=15)')': /releases/repo.html
参考回答:
先检查一下网络,再看看pip install 是否成功
问题二:ModelScope中试了下,windows下还是安装不了?是为什么?
ModelScope中试了下,windows下还是安装不了"modelscope[audio]"是为什么? 是新创建的conda环境python版本是3.8我想用语音领域的Paraformer语音识别-中文-通用-16k-离线-large-长音频版这个模型
参考回答:
我这里用linux环境是可以安装成功的,windows的环境我这里目前没有另外,您可以使用modelscope的notebook,有GPU免费时长的,而且有我们的官方镜像,可以直接使用这个模型如果您急用也可以先用notebook的paraformer系列模型暂时win上还不支持的pip install modelscope[audio_asr] 试试,语音其他领域不支持windows
问题三:ModelScope中,提示找不到Kantts库,安装不上,请教这个问题怎么解决?
ModelScope中!pip install scipy
!pip install kantts
from modelscope.outputs import OutputKeys
from modelscope.pipelines import pipeline
from modelscope.utils.constant import Tasks
text = '待合成文本'
model_id = 'damo/speech_sambert-hifigan_tts_zhitian_emo_zh-cn_16k'
sambert_hifigan_tts = pipeline(task=Tasks.text_to_speech, model=model_id)
output = sambert_hifigan_tts(input=text)
wav = output[OutputKeys.OUTPUT_WAV]
with open('output.wav', 'wb') as f:
f.write(wav)
报错:
ERROR: Could not find a version that satisfies the requirement kantts (from versions: none) ERROR: No matching distribution found for kantts提示找不到Kantts库,安装不上,请教这个问题怎么解决?
参考回答:
您在终端里指定版本安装一下试试。kantts1.0.1
问题四:在ModelScope中,我安装了mmcv-full 1.7.报错怎么办?
在ModelScope中,我卸载了mmcv和mmcv-full,安装了mmcv-full 1.7.0报这个错怎么办?
参考回答:
本地mmcv-full1.7.0可以跑。可能您用命令安装时候将mmcv-full打成了mmcv,用您发的这里安装mmcv-full离线安装试一下。https://download.openmmlab.com/mmcv/dist/cu117/torch1.13.0/index.html
问题五:在ModelScope中,已经安装上,了是哪个版本不兼容导致的呢?
在ModelScope中,已经安装上了mmcv-full 1.7.0 mmcv 2.0.0rc4 mmdet 3.1.0 torch 1.13.1 cuda 11.7。在这里面:https://download.openmmlab.com/mmcv/dist/cu117/torch1.13.0/index.html。
报的错就是刚才发的截图,是哪个版本不兼容导致的呢?
参考回答:
不要mmcv 2.0.0rc4 ,mmcv-full 1.7.0 就可以。一般安装mmcv-full 之前如果安装了mmcv的话,需要卸载mmcv再安装mmcv-full。