BinaryClassificationCatalog.ChangeModelThreshold<TModel> 方法

定义

修改现有模型的阈值并返回修改后的模型的方法。

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)

类型参数

TModel

模型参数的类型。

参数

model
BinaryPredictionTransformer<TModel>

用于修改阈值的现有模型。

threshold
Single

新阈值。

返回

具有修改阈值的新模型。

适用于