Azure Machine Learning Designer SDK
Project description
Azure Machine Learning Designer Python SDK
The mldesigner
package provide the SDK interface which work along with Azure ML Designer (drag-n-drop ML) UI experience.
- Azure ML Designer (drag-n-drop ML): designer is a UI tool in the Azure ML workspace for visually connecting datasets and components on an interactive canvas to create machine learning pipelines. To learn how to get started with the designer, see Tutorial: Predict automobile price with the designer.
Especially, the package ease the authoring experience of resources like Components
& Pipelines
:
- Components: self-contained piece of code that does one step in a machine learning pipeline: data preprocessing, model training, model scoring, a hyperparameter tuning run, etc. Such that it can be parameterized and then used in different contexts.
- Pipelines: independently executable workflow of machine learning tasks composed by Components.
Change Log
v0.1.0b7 (2022.10.25)
New Features
- Support mldesigner compile:
mldesigner compile
- Support list type component input for generate_package.
Fixed Bugs
- Fixed execute error when input string has space or "=" inside.
- Fixed execute error for bool parameter parsing.
Improvements
- Remove
mode
client default valuero_mount/rw_mount
from mldesignerInput/Output
class. - Refine error message when defining a component in
.ipynb
. - Refine error message when failed to create component entity.
v0.1.0b6 (2022.09.19)
Improvements:
- Adopted optional input new format: '$[[]]' instead of old '[]'.
- Support Enum for mldesigner input.
- Raise error if input has no annotation specified.
Fixed Bugs:
- Fixed import error when used along with azure-ai-ml<0.1.0b7.
v0.1.0b5 (2022.09.08)
New Features
- Enable using @command_component without brackets when no additional parameters.
from mldesigner import command_component @command_component def my_component(): pass # equals to @command_component() def my_component(): pass
Fixed Bugs:
- Fixed component command execution error when no inputs or outputs specified.
- Fixed incompatible issue with azure-ai-ml >=0.1.0b7: error when trying to import azure-ai-ml constants
v0.1.0b4 (2022.08.22)
New Features:
- Support mldesigner generate:
- Generate component package from local yaml files or remote source
- See reference doc: mldesigner generate doc
- Sample notebook: mldesigner generate samples
- Generate component package from local yaml files or remote source
- Support mldesigner execute: execute component in local host environment.
- CLI example:
mldesigner execute --source ./components.py --name my_component inputs a=1 b=2
- SDK example:
from mldesigner import execute from components import my_component node = my_component(a=1, b=2) res = execute(node)
- More information:
mldesigner execute --help
- CLI example:
Improvements:
- Fix bump version config.
v0.1.0b3 (2022.07.14)
New Features:
- Support optional input for mldesigner Input class.
from mldesigner import command_component, Input @command_component() def my_component(optional_param: Input(type="integer", optional=True)): pass
- Support io descriptions inferring from docstring for pipeline & component.
Improvements:
- Handle compatibility issue for future changes. Less imports of private functions
- Remove default property for mldesigner Input class.
- Enable mldesigner to use argparser to parse incoming args.
- Compatibility handling: old azure ai ml pacakge use different way to load component.
- Component input like "int_param=3", no longer to be processed as optional input when registering to remote.
v0.1.0b2 (2022.05.23)
Improvements:
- Refine code terminologies, replace old dsl with new mldesigner.
v0.1.0b1 (2022.05.20)
New Features:
- Support using decorator @command_component to define a component.
- Create a component:
from mldesigner import command_component, Input, Output @command_component() def hello_world(input: Input, output: Output, param='str_param'): print("Hello World!")
- Register the component to server:
from azure.ai.ml import MLClient client = MLClient.from_config(credential=credential) client.components.create_or_update(hello_world)
- Use sdk component in pipeline:
from azure.ai.ml import dsl @dsl.pipeline() def my_pipeline(): node = hello_world() return {"pipeline_output": node.outputs.output} pipeline = my_pipeline() client.jobs.create_or_update(pipeline)
- Create a component:
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
No source distribution files available for this release.See tutorial on generating distribution archives.
Built Distribution
File details
Details for the file mldesigner-0.1.0b7-py3-none-any.whl
.
File metadata
- Download URL: mldesigner-0.1.0b7-py3-none-any.whl
- Upload date:
- Size: 84.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.8.14
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6c782c6c51bcadb245246a527dc806535e3f6204331b7dfb303707ecc2e1288b |
|
MD5 | dcfb66de916bf2161987501357cc577d |
|
BLAKE2b-256 | 83f77beb0c3f6c392e0fec1201348d24fefc9eac88191e541a91281c3e8f78a4 |