Skip to content

Latest commit

 

History

History
59 lines (39 loc) · 1.22 KB

Import-MLModel.md

File metadata and controls

59 lines (39 loc) · 1.22 KB

Import-MLModel

Import a machine learning model.

Description

Import a machine learning model.

Syntax

Import-MLModel [-Path] <String> [-Context <MLContext>] [<CommonParameters>]

Parameters

-Path

The location of the model to load.

Type: System.String
Required: True
Position: 0
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

-Context

The context on which to perform the action. If omitted, the current (cached) context will be used.

Type: Microsoft.ML.MLContext
Required: False
Position: named
Default value: Current context
Accept pipeline input: False
Accept wildcard characters: False

Common parameters

This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters.

Inputs

Type Description
None This cmdlet does not accept pipeline input.

Outputs

Type Description
Microsoft.ML.Data.TransformerChain<Microsoft.ML.ITransformer> This cmdlet returns the imported TransformerChain.