Share via


PredictionEnginePool<TData,TPrediction>.GetModel Method

Definition

Overloads

GetModel()

Get the Model used to create the pooled PredictionEngine.

GetModel(String)

Get the Model used to create the pooled PredictionEngine.

GetModel()

Source:
PredictionEnginePool.cs
Source:
PredictionEnginePool.cs
Source:
PredictionEnginePool.cs

Get the Model used to create the pooled PredictionEngine.

public Microsoft.ML.ITransformer GetModel();
member this.GetModel : unit -> Microsoft.ML.ITransformer
Public Function GetModel () As ITransformer

Returns

Applies to

GetModel(String)

Source:
PredictionEnginePool.cs
Source:
PredictionEnginePool.cs
Source:
PredictionEnginePool.cs

Get the Model used to create the pooled PredictionEngine.

public Microsoft.ML.ITransformer GetModel(string modelName);
member this.GetModel : string -> Microsoft.ML.ITransformer
Public Function GetModel (modelName As String) As ITransformer

Parameters

modelName
String

The name of the model. Used when there are multiple models with the same input/output.

Returns

Applies to