oracle.dmt.odm.settings.algorithm
Class ModelSeekerClassificationAlgorithmSettings
java.lang.Object
|
+--oracle.dmt.odm.MiningObject
|
+--oracle.dmt.odm.settings.algorithm.MiningAlgorithmSettings
|
+--oracle.dmt.odm.settings.algorithm.ModelSeekerClassificationAlgorithmSettings
- All Implemented Interfaces:
- java.io.Serializable
Deprecated.
Model Seeker functionality is deprecated in version 10.1.
- public class ModelSeekerClassificationAlgorithmSettings
- extends MiningAlgorithmSettings
An instance of ModelSeekerClassificationAlgorithmSettings
is used to specify multiple algorithm settings to be used by Model Seeker. Choose from among the following classes for input to the constructor:
NaiveBayesSettings
AdaptiveBayesNetworkSettings
CombinationNaiveBayesSettings
CombinationAdaptiveBayesNetworkSettings
- See Also:
- Serialized Form
Methods inherited from class java.lang.Object |
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
ModelSeekerClassificationAlgorithmSettings
public ModelSeekerClassificationAlgorithmSettings(MiningAlgorithmSettings[] algorithmSettingsArray)
throws InvalidArgumentException
- Deprecated.
- Creates a
ModelSeekerClassificationAlgorithmSettings
object by invoking the parent constructor with an argument value that identifies the algorithm as the Model Seeker algorithm.
- Parameters:
algorithmSettingsArray
- This array of MiningAlgorithmSettings
objects is used to hold a collection of instances, each of which is used to build, test, and calculate lift for one or more models.
- Throws:
InvalidArgumentException
-
- if the array is null,
- if the array size is < 1 or > 100, or
- if one or more of the array elements are of an invalid sub-class of
MiningAlgorithmSettings.
If one or more array elements are invalid, the exception message specifies the first element found that is invalid. For Oracle 9.2.0, elements of the array must be one of the following types:
NaiveBayesSettings
,
AdaptiveBayesNetworkSettings
,
CombinationNaiveBayesSettings
,
CombinationAdaptiveBayesNetworkSettings
.
getMiningAlgorithmSettingsArray
public MiningAlgorithmSettings[] getMiningAlgorithmSettingsArray()
- Deprecated.
- Returns the array of
MiningAlgorithmSettings
objects.
-
- Returns:
- The array of
MiningAlgorithmSettings
objects.