我正在关注Microsoft Azure团队的instruction video。
docker run
必须附带模型和数据的位置。按照视频中的指南,我从azure-luis/input
下的LUIS下载“导出的数据”
然后,我运行以下命令
docker run -i -t my-docker-image-repo-id EULA=accept BILLING=https://southcentralus.api.cognitive.microsoft.com/luis/v2.0 APIKEY=my-unique-api-key --mount type=bind,input=/Users/#####/Developers/azure-luis/input --mount type=bind,source=/Users/#####/Developers/azure-luis/output
但我一直收到以下消息
A folder must be mounted at the location '/input' where models and other input data can be read.
我在哪里做错了?