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
"Visualizing Predicted Label by a Binary Classifier"
Hi,
I am completely new to Rapid-miner & this forum.
I want to do a binary classification on some text documents. I used WV Text Plugin for creating the document vector.
I created the following operator chain (using GUI)
Root
-TextInput
-StringTokenizer
-EnglishStopWordFilter
-PorterStemmer
-XValid
-Lerner
-ApplierChain
-ModelApplier
-PerformanceEvaluator
Now I want to see the predicted class label for each test documents? Is that possible?
Waiting for an early reply...
I am completely new to Rapid-miner & this forum.
I want to do a binary classification on some text documents. I used WV Text Plugin for creating the document vector.
I created the following operator chain (using GUI)
Root
-TextInput
-StringTokenizer
-EnglishStopWordFilter
-PorterStemmer
-XValid
-Lerner
-ApplierChain
-ModelApplier
-PerformanceEvaluator
Now I want to see the predicted class label for each test documents? Is that possible?
Waiting for an early reply...
Tagged:
0
Answers
If you click twice on an operator in the tree you are enabling the "Breakpoint after" - option. As an alternative you can right click and select one the breakpoint options. Now the process stops at this breakpoint everytime it executes the related operator (and can be resumed using the option in the head task bar).
By setting e.g. "Breakpoint After" in ModelApplier you can view all the predictions. As an alternative in this special case you could use the operator XVPrediction.
regards,
Steffen
Thanks Steffen for your prompt reply.