Java Examples for weka.core.TechnicalInformationHandler
The following java examples will help you to understand the usage of weka.core.TechnicalInformationHandler. These source code samples are taken from different open source projects.
Example 1
| Project: ComplexRapidMiner-master File: GenericWekaEnsembleLearner.java View source code |
public TechnicalInformation getTechnicalInformation() {
try {
Classifier classifier = getWekaClassifier(null);
if (classifier instanceof TechnicalInformationHandler)
return ((TechnicalInformationHandler) classifier).getTechnicalInformation();
else
return null;
} catch (OperatorException e) {
return null;
}
}