The Altair Community is migrating to a new platform to provide a better experience for you. In preparation for the migration, the Altair Community is on read-only mode from October 28 - November 6, 2024. Technical support via cases will continue to work as is. For any urgent requests from Students/Faculty members, please submit the form linked here
Answers
you can get more information about the initialization of RapidMiner together with the plugins in the following thread:
http://rapid-i.com/rapidforum/index.php/topic,26.0.html
Hope that helps,
Ingo
I have to write a Java-Application where i want to make RapidMiner GUI for Classifying Audio Data, I use rapidminer.jar (version 4.0) and rapidminer-valueseries-4.0.jar. First step i make process for process automatic feature extraction audio.
but I got the error-message below :
G Jul 27, 2008 1:32:38 PM: Loading operators from 'C:\Program Files\RapidMiner\RapidMiner-4.0\lib\plugins\rapidminer-valueseries-4.0.jar'.
Root[0] (Process)
+- MusicExampleSource[0] (MusicExampleSource)
+- ValueSeriesGP[0] (ValueSeriesGP)
+- XValidation[0] (XValidation)
+- LibSVMLearner[0] (LibSVMLearner)
+- ModelApplier[0] (ModelApplier)
+- PerformanceEvaluator[0] (PerformanceEvaluator)
P Jul 27, 2008 1:32:40 PM: Initialising process setup
P Jul 27, 2008 1:32:40 PM: [NOTE] No filename given for result file, using stdout for logging results!
P Jul 27, 2008 1:32:40 PM: Checking properties...
P Jul 27, 2008 1:32:40 PM: Properties are ok.
P Jul 27, 2008 1:32:40 PM: Checking process setup...
P Jul 27, 2008 1:32:40 PM: [Error] ValueSeriesGP: ValueSeriesGP: Operator has 0 children, should be 1
P Jul 27, 2008 1:32:40 PM: [Error] XValidation: XValidation: Operator has 0 children, should be 2
P Jul 27, 2008 1:32:40 PM: [Error] Process setup not ok
P Jul 27, 2008 1:32:40 PM: [Error] There were 2 errors.
P Jul 27, 2008 1:32:40 PM: [Warning] PerformanceEvaluator: PerformanceEvaluator: Please use the operators BasicPerformance, RegressionPerformance, ClassificationPerformance, or BinominalClassificationPerformance instead.
P Jul 27, 2008 1:32:40 PM: [Warning] Deprecations: 1 usage of deprecated operators.
P Jul 27, 2008 1:32:40 PM: Process initialised
P Jul 27, 2008 1:32:40 PM: [NOTE] Process starts
P Jul 27, 2008 1:32:40 PM: Process:
Root[0] (Process)
+- MusicExampleSource[0] (MusicExampleSource)
+- ValueSeriesGP[0] (ValueSeriesGP)
+- XValidation[0] (XValidation)
+- LibSVMLearner[0] (LibSVMLearner)
+- ModelApplier[0] (ModelApplier)
+- PerformanceEvaluator[0] (PerformanceEvaluator)
Exception in thread "main" java.lang.RuntimeException: Illegal operator index in getOperator() (ValueSeriesGP): 0
at com.rapidminer.operator.OperatorChain.getOperator(OperatorChain.java:227)
at com.rapidminer.valueseries.gp.ValueSeriesGP.evaluate(Unknown Source)
at com.rapidminer.valueseries.gp.ValueSeriesGP.apply(Unknown Source)
at com.rapidminer.operator.Operator.apply(Operator.java:648)
at com.rapidminer.operator.OperatorChain.apply(OperatorChain.java:379)
at com.rapidminer.operator.Operator.apply(Operator.java:648)
at com.rapidminer.Process.run(Process.java:545)
at com.rapidminer.Process.run(Process.java:534)
at com.rapidminer.Process.run(Process.java:524)
at seriusne.ProcessCreator.main(ProcessCreator.java:221)
Plugin is succes loading but there is a message error Exception in thread "main" java.lang.RuntimeException: Illegal operator index in getOperator() (ValueSeriesGP): 0,.
Could anyone plz let me the solution or where i could be going wrong?
Thanks and Regards.
Although I do not know much about the value series plugin... I suggest to create a valid setup and try it again. Maybe the description of the ValueSeriesGP-Operator is helpful.
greetings
Steffen
Steffen is right. The ValueSeriesGP operator needs an inner operator delivering a performance vector (this information can be checked in the operator info dialog available from the context menu of the ValueSeriesGP operatoror by pressing F1 after selecting it).
If you use a cross validation, it again has to have specified children. I would recommend to perform the online tutorial available from the help menu in order to get the basic ideas between the process setups and you should also have a loop into the examples delivered together with the value series plugin (available from the SourceForge download page).
Cheers,
Ingo
Thanks for the answer, actually i tried to make process for Classifying Audio Data. This is the code for the first step is automatic feature extraction. This code will produced operator for the next step feature extraction in xml file, but still error in the error setup, ValueSeriesGP still can't read the children.. Please help me??
thank you again..