org.opentox.ontology.meta
Class ModelMeta

java.lang.Object
  extended by org.opentox.ontology.meta.ModelMeta

public class ModelMeta
extends java.lang.Object

Meta information about a Model.

Author:
Sopasakis Pantelis

Field Summary
 java.util.List<AlgorithmParameter> algorithmParameters
          List of parameters of the algorithm used to train the model.
 java.lang.String AlgorithmURI
          URI of the algorithm used to train the model.
 weka.core.Instances data
          Instances object corresponding to the URI of the dataset.
 java.lang.String dataseturi
          URI of the dataset used to train the model.
 java.lang.String model_id
          Identification number of the model.
 
Constructor Summary
ModelMeta(java.lang.String model_id, java.lang.String dataseturi, weka.core.Instances data, java.util.List<AlgorithmParameter> algorithmParameters, java.lang.String AlgorithmURI)
           
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

model_id

public java.lang.String model_id
Identification number of the model.


dataseturi

public java.lang.String dataseturi
URI of the dataset used to train the model.


data

public weka.core.Instances data
Instances object corresponding to the URI of the dataset.


algorithmParameters

public java.util.List<AlgorithmParameter> algorithmParameters
List of parameters of the algorithm used to train the model.


AlgorithmURI

public java.lang.String AlgorithmURI
URI of the algorithm used to train the model.

Constructor Detail

ModelMeta

public ModelMeta(java.lang.String model_id,
                 java.lang.String dataseturi,
                 weka.core.Instances data,
                 java.util.List<AlgorithmParameter> algorithmParameters,
                 java.lang.String AlgorithmURI)