Class InMemory.PredictionContainer
- java.lang.Object
-
- weka.classifiers.evaluation.output.prediction.InMemory.PredictionContainer
-
- Enclosing class:
- InMemory
public static class InMemory.PredictionContainer extends java.lang.ObjectContainer for storing the predictions alongside the additional attributes.
-
-
Field Summary
Fields Modifier and Type Field Description java.util.Map<java.lang.String,java.lang.Object>attributeValuesthe associated attribute values (attribute-name - value).Instanceinstancethe instance.Predictionpredictionthe prediction.
-
Constructor Summary
Constructors Constructor Description PredictionContainer()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringtoString()Returns a string representation of the container.
-
-
-
Field Detail
-
instance
public Instance instance
the instance.
-
prediction
public Prediction prediction
the prediction.
-
attributeValues
public java.util.Map<java.lang.String,java.lang.Object> attributeValues
the associated attribute values (attribute-name - value).
-
-