BinaryClassificationCatalog.ChangeModelThreshold<TModel> Method

Definition

Method to modify the threshold to existing model and return modified model.

public Microsoft.ML.Data.BinaryPredictionTransformer<TModel> ChangeModelThreshold<TModel> (Microsoft.ML.Data.BinaryPredictionTransformer<TModel> model, float threshold) where TModel : class;
member this.ChangeModelThreshold : Microsoft.ML.Data.BinaryPredictionTransformer<'Model (requires 'Model : null)> * single -> Microsoft.ML.Data.BinaryPredictionTransformer<'Model (requires 'Model : null)> (requires 'Model : null)
Public Function ChangeModelThreshold(Of TModel As Class) (model As BinaryPredictionTransformer(Of TModel), threshold As Single) As BinaryPredictionTransformer(Of TModel)

Type Parameters

TModel

The type of the model parameters.

Parameters

model
BinaryPredictionTransformer<TModel>

Existing model to modify threshold.

threshold
Single

New threshold.

Returns

New model with modified threshold.

Applies to