How to parameterise the training process

divya_das
New Altair Community Member
Suppose I have a Process that takes an input training file & saves a Model. What if I want to re-use the same process for multiple customers. The input training file and model name will change depending on the customer. Can we parameterize the training process? One process for each customer will be difficult to manage in the long run, so we want to re-use the same process.
Tagged:
0
Answers
-
Hi @divya_das
Maybe I am not getting righ what do you mean by 'parameterizing the process', but to my understanding you run the process locally with a certain dataset and then save the resulting model, so why can't you just straightforwardly use the same process with different customers data? Once you have built a unified pipeline for data preparation and model training, you just can use it again and again with different datasets.2 -
Hi,Another thing for "parameterizing processes" is the concept of macros in RapidMiner. Check out the following resources, they may help:And finally the operator "Execute Process" may be helpful as well: https://docs.rapidminer.com/latest/studio/operators/utility/execute_process.htmlHope this helps,
Ingo
2 -
Thank you for your help. I will try to create a re-usable process using macros and "execute process" operator.
0