Skip to content

PipelineParameters format in call to Azure ML Extension #118

@algattik

Description

@algattik

PipelineParameters: '"model_name": "sklearn_regression_model.pkl"'

The correct format to have this picked up by the pipeline (confirmed with the extension development team) is:

PipelineParameters: '"ParameterAssignments": {"model_name": "sklearn_regression_model.pkl"}'

which is results in the following call:

POST https://westeurope.aether.ms/api/v1.0/subscriptions/.../workspaces/aml-myws/PipelineRuns/PipelineSubmit/75a219db-0ec0-4f93-a6ac-4fc402da809f
Request body: {
  ...
  "ExperimentName": "mlopspython",
  "RunSource": "PipelineRun",
  "ParameterAssignments": {
    "model_name": "sklearn_regression_model.pkl"
  }
}
```

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type
    No fields configured for issues without a type.

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions