Uses of Class
org.opentox.algorithm.AlgorithmParameter

Packages that use AlgorithmParameter
org.opentox.algorithm   
org.opentox.algorithm.reporting   
org.opentox.ontology.meta   
 

Uses of AlgorithmParameter in org.opentox.algorithm
 

Fields in org.opentox.algorithm declared as AlgorithmParameter
static AlgorithmParameter<java.lang.Integer> ConstantParameters.CACHESIZE
           
static AlgorithmParameter<java.lang.Double> ConstantParameters.COEFF0
           
static AlgorithmParameter<java.lang.Double> ConstantParameters.COST
           
static AlgorithmParameter<java.lang.Integer> ConstantParameters.DEGREE
           
static AlgorithmParameter<java.lang.Double> ConstantParameters.EPSILON
           
static AlgorithmParameter<java.lang.Double> ConstantParameters.GAMMA
           
static AlgorithmParameter<java.lang.String> ConstantParameters.KERNEL
           
static AlgorithmParameter<java.lang.String> ConstantParameters.TARGET
           
static AlgorithmParameter<java.lang.Double> ConstantParameters.TOLERANCE
           
 

Methods in org.opentox.algorithm that return AlgorithmParameter
private static AlgorithmParameter<java.lang.Integer> ConstantParameters.CACHESIZE(int value)
           
static AlgorithmParameter<java.lang.Double> ConstantParameters.COEFF0(double value)
           
static AlgorithmParameter<java.lang.Double> ConstantParameters.COST(double value)
           
static AlgorithmParameter<java.lang.Integer> ConstantParameters.DEGREE(int value)
           
static AlgorithmParameter<java.lang.Double> ConstantParameters.EPSILON(double value)
           
static AlgorithmParameter<java.lang.Double> ConstantParameters.GAMMA(double value)
           
static AlgorithmParameter<java.lang.String> ConstantParameters.KERNEL(java.lang.String value)
           
static AlgorithmParameter<java.lang.String> ConstantParameters.TARGET(java.lang.String value)
           
private static AlgorithmParameter<java.lang.Double> ConstantParameters.TOLERANCE(double value)
           
 

Methods in org.opentox.algorithm that return types with arguments of type AlgorithmParameter
 java.util.List<AlgorithmParameter> SvmParameters.getListOfParameters()
          Returns the SVM parameters as a list of AlgorithmParameter objects.
 

Uses of AlgorithmParameter in org.opentox.algorithm.reporting
 

Methods in org.opentox.algorithm.reporting that return types with arguments of type AlgorithmParameter
private static java.util.ArrayList<AlgorithmParameter> AlgorithmReporter.Parameters(AlgorithmEnum algorithm)
           
 

Uses of AlgorithmParameter in org.opentox.ontology.meta
 

Fields in org.opentox.ontology.meta with type parameters of type AlgorithmParameter
 java.util.List<AlgorithmParameter> ModelMeta.algorithmParameters
          List of parameters of the algorithm used to train the model.
 java.util.ArrayList<AlgorithmParameter> AlgorithmMeta.Parameters
           
 

Method parameters in org.opentox.ontology.meta with type arguments of type AlgorithmParameter
 void AlgorithmMeta.setParameters(java.util.ArrayList<AlgorithmParameter> Parameters)
           
 

Constructor parameters in org.opentox.ontology.meta with type arguments of type AlgorithmParameter
ModelMeta(java.lang.String model_id, java.lang.String dataseturi, weka.core.Instances data, java.util.List<AlgorithmParameter> algorithmParameters, java.lang.String AlgorithmURI)