Interface ILearner
Interface to a learner (something that can do machine learning).
Namespace: Microsoft.ML.Probabilistic.Learners
Assembly: Microsoft.ML.Probabilistic.Learners.dll
Syntax
public interface ILearner
Properties
Capabilities
Gets the capabilities of the learner. These are any properties of the learner that are not captured by the type signature of the most specific learner interface below.
Declaration
ICapabilities Capabilities { get; }
Property Value
Type | Description |
---|---|
ICapabilities |
Settings
Gets the settings of the learner. These should be configured once before any query methods are called on the learner.
Declaration
ISettings Settings { get; }
Property Value
Type | Description |
---|---|
ISettings |