Oracle Data Mining Java API Reference
10g Release 1 (10.1)

B12276-01

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

Deprecated.

 Model Seeker functionality is deprecated in version 10.1.

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
 long getBuildDuration()
          Deprecated. Returns the total number of milliseconds needed to build this entry's model, including time for data preparation.
 java.lang.String getClassificationFunctionSettingsName()
          Deprecated. Returns the name of the ClassificationFunctionSettings object used to build this entry's model.
 java.lang.String getComputeLiftResultName()
          Deprecated. Returns the name of MiningLiftResult object for this entry's model.
 long getExecutionDuration()
          Deprecated. Returns the total number of milliseconds needed to perform all operations for this entry: build, test, lift, and calculate figure of merit, excluding time for preparation of data.
 float getFigureOfMerit()
          Deprecated. Returns the figure of merit for this entry's model.
 java.lang.String getMiningModel()
          Deprecated. Returns the name of this entry's model.
 int getMiningModelID()
          Deprecated. This inherited method is not applicable for this class, and it always returns -1.
 java.lang.String getModelName()
          Deprecated. Returns the name of this entry's model.
 MiningAlgorithm getModelType()
          Deprecated. Returns this entry's model type.
 java.lang.String getTestResultName()
          Deprecated. Returns the name of the MiningTestResult object for this entry's model.

 

Methods inherited from class oracle.dmt.odm.result.MiningResult
getCompletionTimestamp, getDurationTime, getInputMiningData, getName, getStartingTimestamp, remove, rename

 

Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait

 

Method Detail

getModelName

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

getMiningModel

public java.lang.String getMiningModel()
Deprecated. 
Returns the name of this entry's model.
Overrides:
getMiningModel in class MiningResult
Returns:
The name of the model corresponding to this entry.

getMiningModelID

public int getMiningModelID()
Deprecated. 
This inherited method is not applicable for this class, and it always returns -1. To get the ID for the model corresponding to this entry, the user should call SupervisedModel.restore passing in the name getModelName().
Overrides:
getMiningModelID in class MiningResult
Returns:
-1.

getModelType

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

getTestResultName

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

getComputeLiftResultName

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

getClassificationFunctionSettingsName

public java.lang.String getClassificationFunctionSettingsName()
Deprecated. 
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 this entry.

getFigureOfMerit

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

getBuildDuration

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

getExecutionDuration

public long getExecutionDuration()
Deprecated. 
Returns the total number of milliseconds needed to perform all operations for this entry: build, test, lift, and calculate figure of merit, excluding time for preparation of data.
Overrides:
getExecutionDuration in class MiningResult
Returns:
The total number of milliseconds taken to perform perform all operations for this entry.

Copyright © 2003 Oracle Corporation. All Rights Reserved.