MLFeatureType
abstract class NatML.MLFeatureType
The MLFeatureType
class is an abstract base class providing information that fully describes the structure of an MLFeature
.
Every MLFeature
has a corresponding MLFeatureType
.
Inspecting the Name
Some feature types include a name. This is usually the case with feature types provided by MLModel
instances. However, most feature types attached to features do not have a name.
Inspecting the Data Type
This is the data type of each element within a given feature. This is usually a signed numeric type.
Type Conversions
The feature type provides an implicit conversion to bool
, indicating whether the feature type is non-null
.
Last updated