Open stanton119 opened 3 years ago
Thanks for the feedback, Stanton! We created an internal task to investigate and track. Will update here.
Thanks, Xun
Are there any updates on this? This is a major blocker for our Production environment.
Not only for each step. Even if you want to submit the experiment again, this will create a problem.
Following the tutorial to create ML datasets as pipeline parameters: https://github.com/Azure/MachineLearningNotebooks/blob/master/how-to-use-azureml/machine-learning-pipelines/intro-to-pipelines/aml-pipelines-showcasing-dataset-and-pipelineparameter.ipynb
This requires the creation of PipelineParameter and then DatasetConsumptionConfig objects. If you have multiple steps which require the same dataset input, you would expect to be able to use the same PipelineParameter for all the steps. However when that PipelineParameter is used with a DatasetConsumptionConfig this doesn't work.
When building the pipeline we get the error:
'PipelineDataset' object has no attribute '_get_datapath'
Seems the object is altered when it is used, so when we use it a second time it breaks.
The work around at the moment is to create a new PipelineParameter for every step that uses the dataset, hence the number of pipeline parameters to configure grows very fast.
Tail end of error log (can't copy/paste text)