A program to recognize and reward our most engaged community members
Generating the example, invoking RapidMiner's JAR file and readingthe predicted class from a file should be not a problem. But I don'tknow how to apply the model to the read example and how to dumpthe predicted class.
<operator name="Root" class="Process" expanded="yes"> <operator name="read_new_data" class="SimpleExampleSource"> </operator> <operator name="load_model" class="ModelLoader"> </operator> <operator name="apply_model" class="ModelApplier"> <list key="application_parameters"> </list> </operator> <operator name="skip_everything_but_id_prediction" class="FeatureNameFilter"> <parameter key="except_features_with_name" value="id||prediction.*"/> <parameter key="filter_special_features" value="true"/> <parameter key="skip_features_with_name" value=".*"/> </operator> <operator name="write_results" class="CSVExampleSetWriter"> </operator></operator>
And is this the typical way of using a previously learned rapdiminermodels by invoking the script with a process file and generatean output in a file? Or can rapidminer be used more efficientlyin a framework where most modules are written in C++?