-
Notifications
You must be signed in to change notification settings - Fork 87
New issue
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
custom script - parallelrunstep not working #118
Comments
The official docs for ParallelRunConfig still show that keyword argument: I wonder if you're using the stale one — |
@dkmiller how can I check the stale one? |
Look in your script to see from where you are importing the Also, suggest you make sure to pull the latest version of this repo. |
I am using official not staled repo: repo cloned couple days ago - so not sure where the problem comes from.. |
I could not reproduce this. Try this "clean" Dockerfile: FROM python:3.8
RUN pip install azureml-pipeline-steps==1.22.0 azureml-pipeline-core==1.22.0
RUN python -c "from azureml.pipeline.steps import ParallelRunConfig; cfg = ParallelRunConfig(allowed_failed_count=1,entry_script='hi.py',environment='foo',error_threshold=1,output_action='append_row',compute_target='cluster',node_count=1)" Docker build fails with:
which means that there is no problem with the keyword |
@dkmiller I am running on AML CI - should I create new conda env? |
Yes, I'd suggest creating a new Conda environment from scratch. Follow this article to expose that Conda environment as a Jupyter kernel: https://medium.com/@nrk25693/how-to-add-your-conda-environment-to-your-jupyter-notebook-in-just-4-steps-abeab8b8d084 . |
when I try run the example
Custom_Script/02_CustomScript_Training_Pipeline.ipynb
I cannot createParallelRunConfig
it gives error:
I have updated to latest SDK (pipeline):
when I downgrade to
1.20.0
it works:so fix is:
The text was updated successfully, but these errors were encountered: