oracle.dmt.odm.result
Class ModelSeekerResultEntry

java.lang.Object
  |
  +--oracle.dmt.odm.MiningObject
        |
        +--oracle.dmt.odm.LocatableObject
              |
              +--oracle.dmt.odm.result.MiningResult
                    |
                    +--oracle.dmt.odm.result.ModelSeekerResultEntry
All Implemented Interfaces:
java.io.Serializable

public class ModelSeekerResultEntry
extends MiningResult

An instance of ModelSeekerResultEntry represents the results for a single model built by the execution of a ModelSeekerTask.
This class contains references to other named objects (e.g., MiningTestResult, MiningLiftResult, MiningModel, etc.) associated with the particular model.

See Also:
Serialized Form

Method Summary
TypeMethod
 long getBuildDuration()
          Returns the number of milliseconds needed to build this entry's model.
 java.lang.String getClassificationFunctionSettingsName()
          Returns the name of the ClassificationFunctionSettings object used to build this entry's model.
 java.lang.String getComputeLiftResultName()
          Returns the name of MiningLiftResult object for this entry's model.
 float getFigureOfMerit()
          Returns the figure of merit for this entry's model.
 java.lang.String getModelName()
          Returns the name of this entry's model.
 MiningAlgorithm getModelType()
          Returns this entry's model type.
 java.lang.String getTestResultName()
          Returns the name of the MiningTestResult object for this entry's model.
 
Methods inherited from class oracle.dmt.odm.result.MiningResult
getCompletionTimestamp, getDurationTime, getExecutionDuration, getInputMiningData, getMiningModel, getName, getStartingTimestamp
 
Methods inherited from class oracle.dmt.odm.LocatableObject
deserialize, serialize
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Method Detail

getModelName

public java.lang.String getModelName()
Returns the name of this entry's model.
Returns:
The name of the model corresponding to the entry.

getModelType

public MiningAlgorithm getModelType()
Returns this entry's model type.
Returns:
The type name for the model corresponding to the entry.

getTestResultName

public java.lang.String getTestResultName()
Returns the name of the MiningTestResult object for this entry's model.
Returns:
The name of this MiningTestResult object calculated for the model corresponding to the entry.

getComputeLiftResultName

public java.lang.String getComputeLiftResultName()
Returns the name of MiningLiftResult object for this entry's model.
Returns:
The name of MiningLiftResult object calculated for the model corresponding to the entry.

getClassificationFunctionSettingsName

public java.lang.String getClassificationFunctionSettingsName()
Returns the name of the ClassificationFunctionSettings object used to build this entry's model.
Returns:
The name of the ClassificationFunctionSettings object used to build the model corresponding to the entry.

getFigureOfMerit

public float getFigureOfMerit()
Returns the figure of merit for this entry's model.
Returns:
The value representing the calculated figure of merit for the model corresponding to the entry.

getBuildDuration

public long getBuildDuration()
Returns the number of milliseconds needed to build this entry's model.
Returns:
The number of milliseconds taken to build this model corresponding to the entry, including time for data preparation.