Search Results for

    Show / Hide Table of Contents

    Interface IPredictorIncrementalTraining<TInstanceSource, TLabelSource>

    Interface to a predictor which can be trained incrementally.

    Namespace: Microsoft.ML.Probabilistic.Learners
    Assembly: Microsoft.ML.Probabilistic.Learners.dll
    Syntax
    public interface IPredictorIncrementalTraining<in TInstanceSource, in TLabelSource>
    Type Parameters
    Name Description
    TInstanceSource

    The type of a source of instances.

    TLabelSource

    The type of a source of labels.

    Methods

    TrainIncremental(TInstanceSource, TLabelSource)

    Incrementally trains the predictor on the specified instances.

    Declaration
    void TrainIncremental(TInstanceSource instanceSource, TLabelSource labelSource = null)
    Parameters
    Type Name Description
    TInstanceSource instanceSource

    The source of instances.

    TLabelSource labelSource

    An optional source of labels.

    In This Article
    Back to top Copyright © .NET Foundation. All rights reserved.