RapidMiner - Part III: Descriptor scaling
Scale the training set
- Add ArffExampleSource operator (IO->Examples) to Root.
- Configure it to load a training set from a file.
- Set the value of the label_attribute to the class column.
- Add Normalization operator (Preprocessing) to Root.
- Configure it by checking the return_preprocessing_model checkbox
- Set the z_transform checkbox to unchecked.
- Add ModelWriter operator (IO->Models) to Root and configure it to save the model to a file.
- Run.
Scale the testing set
- Add ArffExampleSource operator (IO->Examples) to Root.
- Configure it to load a testing set from a file.
- Set the value of the label_attribute to the class column.
- Add ModelLoader operator (IO->Models) to Root and configure it to load the model that is saved during the scaling of the training set.
- Add ModelApplier operator to Root.
- Run.
RapidMiner score full marks for its ease in scaling descriptors.
Share This