0

same problem as this however using script run config How to set azure experiment name from the code after 2021-08-18 SDK change?. Tried all the solutions however did not work

src = ScriptRunConfig(
            source_directory=".",
            script='train.py',
            arguments=training_params,
            compute_target=compute_name,
            environment = conda_env
            )
        #DataReference for underlying RunConfiguration object
        src.run_config.data_references = {Data_Refrence.data_reference_name: Data_Refrence.to_config()}

try:
    run = exp.submit(config=src)
    run.display_name = "Test"
Hamid
  • 103
  • 9

1 Answers1

0

The link which was mentioned in the question regarding the SO thread is the same procedure we can follow programmatical manner. There is an alternative procedure to change the name through Machine Learning Studio portal.

  1. Open Machine Learning Studio
  2. Create a pipeline for prediction based on your requirements.
  3. Open the project which you created. It will show the Jobs in the left panel like mentioned in image

enter image description here

  1. After clicking on it, select the job which you want to modify the name

enter image description here,

Click on the edit button over there beside the name

  1. It will open an edit name panel and give the name which needs to be displayed and click on Save

enter image description here

Sairam Tadepalli
  • 1,563
  • 1
  • 3
  • 11