javax.datamining.supervised
Interface TestMetrics

All Superinterfaces:
MiningObject
All Known Subinterfaces:
ClassificationTestMetrics, RegressionTestMetrics

public interface TestMetrics
extends MiningObject

TestMetrics is a common interface for the metadata created as the result of executing a test task on a supervised model. It may contain a Lift, a ConfusionMatrix object, and a ReceiverOperatingCharacteristics if their computation was enabled in the test task.

Author:
JSR-73 Java Data Mining Expert Group
See Also:
MiningObject

Method Summary
 java.lang.String getModelName()
          Returns the model name used to generate this test result.
 java.lang.String getTaskIdentifier()
          Returns the identifier of the task that generated the result.
 java.lang.String getTestDataName()
          Returns the name of the test data used for this test.
 
Methods inherited from interface javax.datamining.MiningObject
getCreationDate, getCreatorInfo, getDescription, getName, getObjectIdentifier, getObjectType, setDescription
 

Method Detail

getModelName

public java.lang.String getModelName()
Returns the model name used to generate this test result.

Returns:
String

getTaskIdentifier

public java.lang.String getTaskIdentifier()
Returns the identifier of the task that generated the result.

Returns:
String

getTestDataName

public java.lang.String getTestDataName()
Returns the name of the test data used for this test.

Returns:
String