We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I am not able to publish the pipeline into ML workspace now with the following package dependencies as specified in the code:
conda_dependencies = CondaDependencies.create( conda_packages=["cudatoolkit=10.0"], pip_packages=[ "azure-storage-blob==2.1.0", "azureml-sdk", "hickle==3.4.3", "requests==2.21.0", "sklearn", "pandas", "numpy", "pillow==6.0.0", "tensorflow-gpu==1.15", "keras", "matplotlib", "seaborn", ] )
The pip package dependencies is missing package versions, leads to failure while publish the pipeline into ML workspace.
A couple of obvious errors:
Would be great if the code can be verified with library versions.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I am not able to publish the pipeline into ML workspace now with the following package dependencies as specified in the code:
conda_dependencies = CondaDependencies.create(
conda_packages=["cudatoolkit=10.0"],
pip_packages=[
"azure-storage-blob==2.1.0",
"azureml-sdk",
"hickle==3.4.3",
"requests==2.21.0",
"sklearn",
"pandas",
"numpy",
"pillow==6.0.0",
"tensorflow-gpu==1.15",
"keras",
"matplotlib",
"seaborn",
]
)
The pip package dependencies is missing package versions, leads to failure while publish the pipeline into ML workspace.
A couple of obvious errors:
Would be great if the code can be verified with library versions.
The text was updated successfully, but these errors were encountered: