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

B12276-01

Package oracle.dmt.odm.task

This package contains Java classes representing mining tasks.

See:
          Description

Interface Summary
ExecutionHandle An ExecutionHandle serves as a handle for the application that can be used to monitor or cancel a task execution.
TaskStatusHistory The interface TaskStatusHistory is an ordered list iterator of task execution statuses.

 

Class Summary
ClassificationTestTask An instance of ClassificationTestTask is used for testing a model on test data.
CrossValidateTask An instance of CrossValidateTask provides an additional technique for measuring the accuracy of a predictive model.
MiningApplyTask An instance of MiningApplyTask is used for applying a model to a data set to make predictions, classifications, and to provide associated probabilities.
MiningBuildTask An instance of MiningBuildTask is used for building all mining models supported by ODM.
MiningDataTask The abstract class MiningDataTask is the common superclass for all mining tasks that involve data mining operations e.g, (building models, scoring(apply), testing, cross-validate, lift computation).
MiningLiftTask An instance of MiningLiftTask is used to compute the lift based on the specified positive target value and the number of quantiles.
MiningTask The abstract class MiningTask is the common superclass for all data mining task classes.
MiningTaskStatus An instance of MiningTaskStatus provides the following details on the state of a tasks execution: MiningTaskState enumeration State entry timestamp State description A given task may have multiple MiningTaskStatus instances that provide a status history for the task .
ModelExportTask An instance of ModelExportTask is used to export ODM mining models to standard format mining model representations.
ModelImportTask An instance of ModelImportTask is used to import standard format mining models to the database.
ModelSeekerTask Deprecated. Model Seeker functionality is deprecated in version 10.1.
RegressionTestTask An instance of RegressionTestTask is used for testing an Regression (regression) model on test data.

 

Exception Summary
MiningTaskException The exception MiningTaskException is thrown when there is a failure during the execution of a mining task.

 

Package oracle.dmt.odm.task Description

This package contains Java classes representing mining tasks. Mining tasks are named objects that perform a designated mining operation asynchronously. A task object serves as a container within which to specify arguments to data mining operations to be performed by Oracle Data Mining. By providing an object to specify tasks, deferred (batch) processing of tasks is feasible. The task execution handle can be used to interrupt or terminate executing invocations. For deferred or batch processing, one or more task objects can be saved and scheduled for execution at a later time.

Note that each type of mining model also provides synchronous methods for appropriate mining operations. For example, ClusteringModel provides static methods for build and apply. Mining model classes also provides other static methods such as apply, test, and compute lift (for supervised and clustering models), and for association rules model, various rule retrieval methods.

ODM supports the following mining operations. Refer to the Concepts manual for more details.

ODM supports the following types of mining task:


Copyright © 2003 Oracle Corporation. All Rights Reserved.