Uses of Interface
org.tribuo.VariableInfo
Packages that use VariableInfo
-
Uses of VariableInfo in org.tribuo
Subinterfaces of VariableInfo in org.tribuoClasses in org.tribuo that implement VariableInfoModifier and TypeClassDescriptionclass
Same as aCategoricalInfo
, but with an additional int id field.class
Stores information about Categorical features.class
Same as aRealInfo
, but with an additional int id field.class
Stores information about real valued features.class
Contains information about a feature and can be stored in the feature map in aDataset
.Fields in org.tribuo with type parameters of type VariableInfoModifier and TypeFieldDescriptionprotected final Map<String,
VariableInfo> FeatureMap.m
Map from the feature names to their info.Methods in org.tribuo that return VariableInfoModifier and TypeMethodDescriptionVariableInfo.copy()
Returns a copy of this variable info.Gets the variable info associated with that feature name, or null if it's unknown.MutableFeatureMap.put
(VariableInfo info) Adds a variable info into the feature map.Rename generates a fresh VariableInfo with the new name.Methods in org.tribuo that return types with arguments of type VariableInfoMethods in org.tribuo with parameters of type VariableInfoModifier and TypeMethodDescriptionMutableFeatureMap.put
(VariableInfo info) Adds a variable info into the feature map.Method parameters in org.tribuo with type arguments of type VariableInfoModifier and TypeMethodDescriptionstatic Map<String,
VariableIDInfo> ImmutableFeatureMap.generateIDs
(List<? extends VariableInfo> list) Generates the feature ids by sorting the features with the String comparator, then sequentially numbering them.Constructor parameters in org.tribuo with type arguments of type VariableInfoModifierConstructorDescriptionprotected
FeatureMap
(Map<String, ? extends VariableInfo> m) Constructs a feature map wrapping the supplied map.ImmutableFeatureMap
(List<VariableInfo> infoList) Constructs a new immutable feature map copying the supplied variable infos and generating appropriate ID numbers.