|
Oracle Data Mining Java API Reference 10g Release 1 (10.1) B12276-01 | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--oracle.dmt.odm.MiningObject | +--oracle.dmt.odm.settings.algorithm.MiningAlgorithmSettings | +--oracle.dmt.odm.settings.algorithm.SupportVectorMachineSettings
The abstract class SupportVectorMachineSettings
is the common superclass of all Support Vector Machine (SVM) mining algorithm settings. An algorithm settings specifies parameters for particular SVM algorithm.
Method Summary | |
java.lang.Float |
getComplexityFactor() Returns a parameter trading off complexity for prediction loss. |
int |
getKernelCacheSize() Returns size of cache used for storing computed kernels during the build operation. |
KernelFunction |
getKernelFunction() Returns the Kernel Function used to transform the input data into a high dimensional feature space. |
Normalization |
getNormalization() Returns the Normalization used to normalize the input data. |
java.lang.Float |
getStandardDeviation() Returns the standard deviation of the Gaussian kernel (for Gaussian kernels only). |
float |
getTolerance() Returns the value of allowed error for termination. |
void |
setComplexityFactor(java.lang.Float complexityFactor) Sets the value of parameter trading off complexity for prediction loss. |
void |
setKernelCacheSize(int kernelCacheSize) Sets the size of cache used for storing computed kernels during the build operation. |
void |
setKernelFunction(KernelFunction kernelFunction) Sets the Kernel Function used to transform the input data into a high dimensional feature space. |
void |
setNormalization(Normalization normalization) Sets the Normalization used to normalize the input data. |
void |
setStandardDeviation(java.lang.Float standardDeviation) Sets the standard deviation of the Gaussian kernel (for Gaussian kernels only). |
void |
setTolerance(float tolerance) Sets the value of allowed error for termination. |
Methods inherited from class oracle.dmt.odm.settings.algorithm.MiningAlgorithmSettings |
getMiningAlgorithm, getMiningAlgorithmName |
Methods inherited from class java.lang.Object |
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Method Detail |
public void setNormalization(Normalization normalization)
normalization
-public Normalization getNormalization()
public void setKernelFunction(KernelFunction kernelFunction)
kernelFunction
-public KernelFunction getKernelFunction()
public void setTolerance(float tolerance) throws InvalidArgumentException
tolerance
-InvalidArgumentException
- is thrownInvalidArgumentException
public float getTolerance()
public void setStandardDeviation(java.lang.Float standardDeviation) throws InvalidArgumentException
standardDeviation
- value will be computed if null.InvalidArgumentException
- is thrownInvalidArgumentException
public java.lang.Float getStandardDeviation()
public void setComplexityFactor(java.lang.Float complexityFactor) throws InvalidArgumentException
complexityFactor
- value will be computed if null.InvalidArgumentException
- is thrownInvalidArgumentException
public java.lang.Float getComplexityFactor()
public void setKernelCacheSize(int kernelCacheSize) throws InvalidArgumentException
kernelCacheSize
-InvalidArgumentException
- is thrownInvalidArgumentException
public int getKernelCacheSize()
|
| |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |