BinaryClassificationCatalog.ChangeModelThreshold<TModel> Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
Existing model to modify threshold.
- threshold
- Single
New threshold.
Returns
New model with modified threshold.