Search Results for

    Show / Hide Table of Contents

    Interface IBayesPointMachineClassifierSettings<TLabel, TTrainingSettings, TPredictionSettings>

    Interface to settings of a Bayes point machine classifier.

    Inherited Members
    ICustomSerializable.SaveForwardCompatible(IWriter)
    Namespace: Microsoft.ML.Probabilistic.Learners
    Assembly: Microsoft.ML.Probabilistic.Learners.Classifier.dll
    Syntax
    public interface IBayesPointMachineClassifierSettings<TLabel, out TTrainingSettings, out TPredictionSettings> : ISettings, ICustomSerializable where TTrainingSettings : BayesPointMachineClassifierTrainingSettings where TPredictionSettings : IBayesPointMachineClassifierPredictionSettings<TLabel>
    Type Parameters
    Name Description
    TLabel

    The type of a label.

    TTrainingSettings

    The type of the settings for training.

    TPredictionSettings

    The type of the settings for prediction.

    Properties

    Prediction

    Gets the settings of the Bayes point machine classifier which affect prediction.

    Declaration
    TPredictionSettings Prediction { get; }
    Property Value
    Type Description
    TPredictionSettings

    Training

    Gets the settings of the Bayes point machine classifier which affect training.

    Declaration
    TTrainingSettings Training { get; }
    Property Value
    Type Description
    TTrainingSettings
    In This Article
    Back to top Copyright © .NET Foundation. All rights reserved.