当我尝试在 google colab 上训练 DeepSpeech 模型时,我收到一条错误消息,指出不支持 .whl 文件

while I was trying to train a DeepSpeech model on google colab, I'm getting an error saying that .whl file is not suported

我使用的命令

!wget https://github.com/mozilla/DeepSpeech/releases/download/v0.9.3/ds_ctcdecoder-0.9.3-cp36-cp36m-manylinux1_x86_64.whl

!pip install /content/~path~/ds_ctcdecoder-0.9.3-cp36-cp36m-manylinux1_x86_64.whl

这给了我一个错误

ERROR: ds_ctcdecoder-0.9.3-cp36-cp36m-manylinux1_x86_64.whl is not a supported wheel on this platform.

我该如何解决这个问题?

您正在使用 wget 来下载为不同版本的 Python 构建的 .whl 文件。你在下拉

ds_ctcdecoder-0.9.3-cp36-cp36m-manylinux1_x86_64.whl

但是 运行 Python 3.7。您需要一个不同的 .whl 文件,例如:

ds_ctcdecoder-0.9.3-cp37-cp37m-manylinux1_x86_64.whl

这是available here from the DeepSpeech releases page on GitHub