Hi,
Use the java platform and took a while trying to go a IOContainer as FAQs should I do it this way:
FAQ >>
http://rapid-i.com/rapidforum/index.php/topic,5807.0.html
IOContainer ioResult = myProcess.run(ioInput);
if (ioResult.getElementAt(0) instanceof ExampleSet) {
ExampleSet resultSet = (ExampleSet)ioResult.getElementAt(0);
}
But it does not work, I think it may be the version of RapidMiner, I using version 5.3.013, but I've also tested with version 5.2.008 and 5.1.017. Which version of RapidMiner is the previous block of code? (Currently I using version 5.2.008)
On the other hand, if I extract the code into a IOObject [3], in the first position meeting the performance vector, in the second meeting a model (MultiModelByRegression) and in the third I find a WordList, the description of that object says com.rapidminer.operator.text.
WordList but I can not create that kind of object, on which version of RapidMiner find the WordList object? (This is the code):
IOContainer ioContainer = process.run();
IOObject[] ioObject = new IOObject[3];
ioObject[0] = ioContainer.getElementAt(0); //the created model
ioObject[1] = ioContainer.getElementAt(1); //the performance vector created by a self test
ioObject[2] = ioContainer.getElementAt(2); //the WordList
MultiModelByRegression multiModel = (MultiModelByRegression) ioObject[0];
PerformanceVector performance = (PerformanceVector) ioObject[1];
Object exampleSetWordList = ioObject[2]; //Here I extract the object information
Please Help me!
Thanks!!