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
Apply model to unlabelled data and writing a csv
So, I have a dataset which I am splitting to train on using cross validation, and I get my results and performance for this all fine, but then I have to apply this model to unlabelled data and export the predictions to a csv (obviously no performance measure here because it's unlabelled). But, after I have done the training part, how do I actually apply that to the unlabelled data? I am pretty new to rapidminer and would love some help. Thanks.
0
Answers
1. You train a model and save this model using store output.
2. You take this output (saved model) and use the apply model operator. The model goes to the mod input port, the new data to the unl port (unlabeled).
3. The output should now contain your predictions. This output can then be saved as cvs using the export cvs operator.