Azure ML 教程 - 无法加载入口点 automl
Azure ML Tutorial - Failed to load entrypoint automl
我正在学习以下教程。我未能 运行“创建控制脚本”。
有什么问题吗?
https://docs.microsoft.com/en-us/azure/machine-learning/tutorial-1st-experiment-hello-world
azureuser@kensmlcompute:~/cloudfiles/code/Users/my.name/get-started$ python run-hello.py
Failure while loading azureml_run_type_providers. Failed to load entrypoint automl =
azureml.train.automl.run:AutoMLRun._from_run_dto with exception (pyarrow 4.0.0
(/anaconda/envs/azureml_py38/lib/python3.8/site-packages),
Requirement.parse('pyarrow<4.0.0,>=0.17.0'), {'azureml-dataset-runtime'}).
https://ml.azure.com/runs/day1-experiment-hello_1623766747_073126f5?
wsid=/subscriptions/1679753a-501e-4e46-9bff-
6120ed5694cf/resourcegroups/kensazuremlrg/workspaces/kensazuremlws&tid=94fe1041-ba47-4f49-
866b-
06c297c116cc
azureuser@kensmlcompute:~/cloudfiles/code/Users/my.name/get-started$
抱歉,您遇到了问题!但对于有关文档的问题,最好在与此文档站点关联的 GitHub 存储库上创建问题。
我认为该错误表明您的环境正在使用版本为 4.0.0 的 pyarrow 包,而 azureml-dataset-运行time 要求包 >=0.17.0 但 <4.0.0
您卸载软件包并安装特定版本会更容易。此处提供了 pyarrow 的版本列表。
由于您使用的是笔记本,因此请创建新单元格并运行这些命令。
!pip uninstall pyarrow
!pip install -y pyarrow==3.0.0
我正在学习以下教程。我未能 运行“创建控制脚本”。
有什么问题吗?
https://docs.microsoft.com/en-us/azure/machine-learning/tutorial-1st-experiment-hello-world
azureuser@kensmlcompute:~/cloudfiles/code/Users/my.name/get-started$ python run-hello.py
Failure while loading azureml_run_type_providers. Failed to load entrypoint automl =
azureml.train.automl.run:AutoMLRun._from_run_dto with exception (pyarrow 4.0.0
(/anaconda/envs/azureml_py38/lib/python3.8/site-packages),
Requirement.parse('pyarrow<4.0.0,>=0.17.0'), {'azureml-dataset-runtime'}).
https://ml.azure.com/runs/day1-experiment-hello_1623766747_073126f5?
wsid=/subscriptions/1679753a-501e-4e46-9bff-
6120ed5694cf/resourcegroups/kensazuremlrg/workspaces/kensazuremlws&tid=94fe1041-ba47-4f49-
866b-
06c297c116cc
azureuser@kensmlcompute:~/cloudfiles/code/Users/my.name/get-started$
抱歉,您遇到了问题!但对于有关文档的问题,最好在与此文档站点关联的 GitHub 存储库上创建问题。
我认为该错误表明您的环境正在使用版本为 4.0.0 的 pyarrow 包,而 azureml-dataset-运行time 要求包 >=0.17.0 但 <4.0.0
您卸载软件包并安装特定版本会更容易。此处提供了 pyarrow 的版本列表。
由于您使用的是笔记本,因此请创建新单元格并运行这些命令。
!pip uninstall pyarrow
!pip install -y pyarrow==3.0.0