Model Input Format Enumeration
Enumerates the format of the input to a model when making predictions.
Definition
Namespace: Numerics.NET.DataAnalysis.Models
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.3
C#
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.3
public enum ModelInputFormat
Members
Automatic | 0 | The format is inferred automatically. This is the default. |
BaseFeatures | 1 | The columns are the original features that appear directly or in derived form in the final model. Base features are identified by name/key. |
InputFeatures | 2 | The columns are the full set of features originally used to fit the model. |
ModelFeatures | 3 | The columns are the features as they appear in the final model. |