Uses of Interface
org.android.activityminer.pmml.model.ModelElement

Packages that use ModelElement
org.android.activityminer.logic.classification Logic layer - classifiers, feature normalizer, PMML builder. 
org.android.activityminer.pmml.model PMML - The main model representation. 
org.android.activityminer.pmml.model.knn PMML - KNN representation. 
 

Uses of ModelElement in org.android.activityminer.logic.classification
 

Methods in org.android.activityminer.logic.classification that return types with arguments of type ModelElement
 List<ModelElement> KNN.toPMMLModelElements(Context context, DataDictionary dataDictionary)
           
 List<ModelElement> Classifier.toPMMLModelElements(Context context, DataDictionary dataDictionary)
          Getter for the PMML model elements.
 

Methods in org.android.activityminer.logic.classification with parameters of type ModelElement
static void PMMLBuilder.updateMiningFieldsAndOutputFromDataDictionary(ModelElement modelElement, DataDictionary dataDictionary)
          Does update the mining fields and output entries in a model element from the given data dictionary
 

Method parameters in org.android.activityminer.logic.classification with type arguments of type ModelElement
 void KNN.fromPMMLModelElements(List<ModelElement> modelElements, ActivityMinerExtension extension)
           
 void Classifier.fromPMMLModelElements(List<ModelElement> modelElements, ActivityMinerExtension extension)
          Method to create the classifier model from PMML model elements.
 

Constructor parameters in org.android.activityminer.logic.classification with type arguments of type ModelElement
KNN(List<ModelElement> pmmlModelElements, ActivityMinerExtension extension)
          Constructor
 

Uses of ModelElement in org.android.activityminer.pmml.model
 

Fields in org.android.activityminer.pmml.model with type parameters of type ModelElement
private  List<ModelElement> PMML.modelElements
          The model elements
 

Methods in org.android.activityminer.pmml.model that return types with arguments of type ModelElement
 List<ModelElement> PMML.getModelElements()
          Getter for the model elements
 

Method parameters in org.android.activityminer.pmml.model with type arguments of type ModelElement
 void PMML.setModelElements(List<ModelElement> modelElements)
          Setter for the model elements
 

Uses of ModelElement in org.android.activityminer.pmml.model.knn
 

Classes in org.android.activityminer.pmml.model.knn that implement ModelElement
 class NearestNeighborModel
          A simple nearest neighbor model representation (without extensions, model statistics, model explanation, targets, local transformations and model verification elements)