[SOLVED] Operator Input Problem
Hello Everybody
As I explain in this post (http://rapid-i.com/rapidforum/index.php/topic,6340.0.html) I would like to filter documents using a list of word.
So I decided to create an operator doing the opposite of "Filter Stopwords (Dictionary)" by modifying the 74th line of StopwordFilterOperator.java
But my operator was in conflict with the real "Text Processing Operator".
So I modified the following files to avoid the conflict:
Unfortunatly now I've got the following error in RapidMiner when I try to use my operator:
Can somebody helps me please?
Many thanks in advance
Johan
As I explain in this post (http://rapid-i.com/rapidforum/index.php/topic,6340.0.html) I would like to filter documents using a list of word.
So I decided to create an operator doing the opposite of "Filter Stopwords (Dictionary)" by modifying the 74th line of StopwordFilterOperator.java
I removed the '!' in the if condition.
if (filter.isStopword(token.getToken()))
But my operator was in conflict with the real "Text Processing Operator".
So I modified the following files to avoid the conflict:
- OperatorsStartword.xml
- OperatorsDocStartword.xml
- build.xml
Unfortunatly now I've got the following error in RapidMiner when I try to use my operator:
???
Expected Document but received Document.
Can somebody helps me please?
Many thanks in advance
Johan
Sort by:
1 - 10 of
101
no worries aborg, I have already got my answer in this link if you are interested http://rapid-i.com/rapidforum/index.php/topic,6500.0.html 

Hi johan_CG,
I have developed a new FilterStopwords operator and successfully loaded it in RapidMiner, but when I try to run the process, I got the same error what you have got.
Expected Document but received Document.
Can you please elaborate how you have resolved this issue?
Thanks!
I have developed a new FilterStopwords operator and successfully loaded it in RapidMiner, but when I try to run the process, I got the same error what you have got.
Expected Document but received Document.
Can you please elaborate how you have resolved this issue?
Thanks!
Hi,
most likely the reason for this to happen is that an extension bundles the class files from all libs it requires into the extension jar file. So if you depend on the text extension, make sure it is available not as a .jar library but rather as a project itself. Otherwise you will end up with all class files of the text extension in your jar so when every extension is loaded by Studio, the class files of the text extension exist twice. And that generates exactly the error you are getting.
Regards,
Marco
most likely the reason for this to happen is that an extension bundles the class files from all libs it requires into the extension jar file. So if you depend on the text extension, make sure it is available not as a .jar library but rather as a project itself. Otherwise you will end up with all class files of the text extension in your jar so when every extension is loaded by Studio, the class files of the text extension exist twice. And that generates exactly the error you are getting.
Regards,
Marco
Hi,
for example here: http://svn.code.sf.net/p/rapidminer/code/Plugins/TextProcessing/Unuk/
Regards,
Marco
for example here: http://svn.code.sf.net/p/rapidminer/code/Plugins/TextProcessing/Unuk/
Regards,
Marco
Hth, gabor