Skip to main content

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.

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.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:
  • 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

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)
      

Project details


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

mldesigner-0.1.0b6-py3-none-any.whl (68.4 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page