Share via


BuilderExtensions.FromFile Method

Definition

Overloads

FromFile<TData,TPrediction>(PredictionEnginePoolBuilder<TData,TPrediction>, String)

Adds the model at the specified file to the builder.

FromFile<TData,TPrediction>(PredictionEnginePoolBuilder<TData,TPrediction>, String, Boolean)

Adds the model at the specified file to the builder.

FromFile<TData,TPrediction>(PredictionEnginePoolBuilder<TData,TPrediction>, String, String)

Adds the model at the specified file to the builder.

FromFile<TData,TPrediction>(PredictionEnginePoolBuilder<TData,TPrediction>, String, String, Boolean)

Adds the model at the specified file to the builder.

FromFile<TData,TPrediction>(PredictionEnginePoolBuilder<TData,TPrediction>, String)

Adds the model at the specified file to the builder.

public static Microsoft.Extensions.ML.PredictionEnginePoolBuilder<TData,TPrediction> FromFile<TData,TPrediction> (this Microsoft.Extensions.ML.PredictionEnginePoolBuilder<TData,TPrediction> builder, string filePath) where TData : class where TPrediction : class, new();
static member FromFile : Microsoft.Extensions.ML.PredictionEnginePoolBuilder<'Data, 'Prediction (requires 'Data : null and 'Prediction : null and 'Prediction : (new : unit -> 'Prediction))> * string -> Microsoft.Extensions.ML.PredictionEnginePoolBuilder<'Data, 'Prediction (requires 'Data : null and 'Prediction : null and 'Prediction : (new : unit -> 'Prediction))> (requires 'Data : null and 'Prediction : null and 'Prediction : (new : unit -> 'Prediction))
<Extension()>
Public Function FromFile(Of TData As Class, TPrediction As Class) (builder As PredictionEnginePoolBuilder(Of TData, TPrediction), filePath As String) As PredictionEnginePoolBuilder(Of TData, TPrediction)

Type Parameters

TData
TPrediction

Parameters

builder
PredictionEnginePoolBuilder<TData,TPrediction>

The builder to which to add the model.

filePath
String

The location of the model.

Returns

The updated PredictionEnginePoolBuilder<TData,TPrediction>.

Applies to

FromFile<TData,TPrediction>(PredictionEnginePoolBuilder<TData,TPrediction>, String, Boolean)

Adds the model at the specified file to the builder.

public static Microsoft.Extensions.ML.PredictionEnginePoolBuilder<TData,TPrediction> FromFile<TData,TPrediction> (this Microsoft.Extensions.ML.PredictionEnginePoolBuilder<TData,TPrediction> builder, string filePath, bool watchForChanges) where TData : class where TPrediction : class, new();
static member FromFile : Microsoft.Extensions.ML.PredictionEnginePoolBuilder<'Data, 'Prediction (requires 'Data : null and 'Prediction : null and 'Prediction : (new : unit -> 'Prediction))> * string * bool -> Microsoft.Extensions.ML.PredictionEnginePoolBuilder<'Data, 'Prediction (requires 'Data : null and 'Prediction : null and 'Prediction : (new : unit -> 'Prediction))> (requires 'Data : null and 'Prediction : null and 'Prediction : (new : unit -> 'Prediction))
<Extension()>
Public Function FromFile(Of TData As Class, TPrediction As Class) (builder As PredictionEnginePoolBuilder(Of TData, TPrediction), filePath As String, watchForChanges As Boolean) As PredictionEnginePoolBuilder(Of TData, TPrediction)

Type Parameters

TData
TPrediction

Parameters

builder
PredictionEnginePoolBuilder<TData,TPrediction>

The builder to which to add the model.

filePath
String

The location of the model.

watchForChanges
Boolean

Whether to watch for changes to the file path and update the model when the file is changed or not.

Returns

The updated PredictionEnginePoolBuilder<TData,TPrediction>.

Applies to

FromFile<TData,TPrediction>(PredictionEnginePoolBuilder<TData,TPrediction>, String, String)

Adds the model at the specified file to the builder.

public static Microsoft.Extensions.ML.PredictionEnginePoolBuilder<TData,TPrediction> FromFile<TData,TPrediction> (this Microsoft.Extensions.ML.PredictionEnginePoolBuilder<TData,TPrediction> builder, string modelName, string filePath) where TData : class where TPrediction : class, new();
static member FromFile : Microsoft.Extensions.ML.PredictionEnginePoolBuilder<'Data, 'Prediction (requires 'Data : null and 'Prediction : null and 'Prediction : (new : unit -> 'Prediction))> * string * string -> Microsoft.Extensions.ML.PredictionEnginePoolBuilder<'Data, 'Prediction (requires 'Data : null and 'Prediction : null and 'Prediction : (new : unit -> 'Prediction))> (requires 'Data : null and 'Prediction : null and 'Prediction : (new : unit -> 'Prediction))
<Extension()>
Public Function FromFile(Of TData As Class, TPrediction As Class) (builder As PredictionEnginePoolBuilder(Of TData, TPrediction), modelName As String, filePath As String) As PredictionEnginePoolBuilder(Of TData, TPrediction)

Type Parameters

TData
TPrediction

Parameters

builder
PredictionEnginePoolBuilder<TData,TPrediction>

The builder to which to add the model.

modelName
String

The name of the model which allows for uniquely identifying the model when multiple models have the same TData and TPrediction types.

filePath
String

The location of the model.

Returns

The updated PredictionEnginePoolBuilder<TData,TPrediction>.

Applies to

FromFile<TData,TPrediction>(PredictionEnginePoolBuilder<TData,TPrediction>, String, String, Boolean)

Adds the model at the specified file to the builder.

public static Microsoft.Extensions.ML.PredictionEnginePoolBuilder<TData,TPrediction> FromFile<TData,TPrediction> (this Microsoft.Extensions.ML.PredictionEnginePoolBuilder<TData,TPrediction> builder, string modelName, string filePath, bool watchForChanges) where TData : class where TPrediction : class, new();
static member FromFile : Microsoft.Extensions.ML.PredictionEnginePoolBuilder<'Data, 'Prediction (requires 'Data : null and 'Prediction : null and 'Prediction : (new : unit -> 'Prediction))> * string * string * bool -> Microsoft.Extensions.ML.PredictionEnginePoolBuilder<'Data, 'Prediction (requires 'Data : null and 'Prediction : null and 'Prediction : (new : unit -> 'Prediction))> (requires 'Data : null and 'Prediction : null and 'Prediction : (new : unit -> 'Prediction))
<Extension()>
Public Function FromFile(Of TData As Class, TPrediction As Class) (builder As PredictionEnginePoolBuilder(Of TData, TPrediction), modelName As String, filePath As String, watchForChanges As Boolean) As PredictionEnginePoolBuilder(Of TData, TPrediction)

Type Parameters

TData
TPrediction

Parameters

builder
PredictionEnginePoolBuilder<TData,TPrediction>

The builder to which to add the model.

modelName
String

The name of the model which allows for uniquely identifying the model when multiple models have the same TData and TPrediction types.

filePath
String

The location of the model.

watchForChanges
Boolean

Whether to watch for changes to the file path and update the model when the file is changed or not.

Returns

The updated PredictionEnginePoolBuilder<TData,TPrediction>.

Applies to