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 TypeClassDescriptionclassSame as aCategoricalInfo, but with an additional int id field.classStores information about Categorical features.classSame as aRealInfo, but with an additional int id field.classStores information about real valued features.classContains information about a feature and can be stored in the feature map in aDataset.Classes in org.tribuo that implement interfaces with type arguments of type VariableInfoModifier and TypeClassDescriptionclassA map from Strings toVariableInfoobjects storing information about a feature.Fields in org.tribuo with type parameters of type VariableInfoModifier and TypeFieldDescriptionprotected final Map<String, VariableInfo> FeatureMap.mMap 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 VariableInfoModifierConstructorDescriptionprotectedFeatureMap(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.