Package ai.libs.jaicore.ml.core.dataset
Interface INumericLabeledAttributeArrayInstance<L>
-
- All Superinterfaces:
org.apache.commons.math3.ml.clustering.Clusterable,IAttributeArrayInstance,ILabeledAttributeArrayInstance<L>,ILabeledInstance<L>,INumericArrayInstance
- All Known Implementing Classes:
SimpleInstance,WekaInstance
public interface INumericLabeledAttributeArrayInstance<L> extends INumericArrayInstance, ILabeledAttributeArrayInstance<L>
Type intersection interface for numeric instances on one hand and labeled instances on the other hand. It is on purpose that the intersection is also with LabeledAttributeArrayInstance, because only this way, objects implementing this interface can also be used in placed where ILabeledAttributeArrayInstance objects are required. If this interface would only extend INumericArrayInstance and ILabeledInstance, this would not be possible.
-
-
Method Summary
-
Methods inherited from interface ai.libs.jaicore.ml.core.dataset.IAttributeArrayInstance
getAllAttributeValues, getAttributeValueAtPosition, getNumberOfAttributes
-
Methods inherited from interface ai.libs.jaicore.ml.core.dataset.ILabeledInstance
getTargetValue
-
Methods inherited from interface ai.libs.jaicore.ml.core.dataset.INumericArrayInstance
getAsDoubleVector, getAttributeValue, getPoint
-
-