'Copy pipeline from one ML Studio to another subscription

I am very new to Azure ML Studio. We have ML studio with 1 pipeline and 7 components. The requirement is to restore the contents from one subscription to another. I am familiar of restoring the ADF pipelines using ARM template. Is there any way to restore ML related pipeline and components?



Solution 1:[1]

The classic methodology to copy is clone which is no longer supported. The alternate and easy procedure is using YAML file

The best way to clone or copy the pipeline from one subscription to another is using YAML file.

Steps to be followed:

For YAML pipelines, the process for cloning is to copy the YAML from the source pipeline and use it as the basis for the new pipeline.

  1. Select the pipelines from the left panel

enter image description here

  1. Navigate to the pipeline details for your pipeline, and choose Edit. enter image description here

  2. Copy the pipeline YAML from the editor, and paste it into the YAML editor for your new pipeline

  3. To customize your newly cloned pipeline, see Customize your pipeline.

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 SairamTadepalli-MT