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
Create multi models
I want to create a multi-model by param, what I mean:
I have a country column, and I want to have a different model per country.
So, I want to have a model, that takes the country and applies the relevant model on it. (for the train and for the predict)
What is the best way to do it? if there is away?
I have a country column, and I want to have a different model per country.
So, I want to have a model, that takes the country and applies the relevant model on it. (for the train and for the predict)
What is the best way to do it? if there is away?
1
Best Answer
-
varunm1 Member Posts: 1,207 UnicornHello @Kuyu
I created a sample process for you. In this process, I used Titanic Training and Titanic Unlabelled datasets available in Rapidminer. The training dataset is for training and unlabelled data is for applying or testing. Similar to your case, I wanted to build a different model for different "Passenger Class". I looped based on "loop_value" operator and used %{loop_value} macro to filter the data inside loop to create and test models. The output is a collection of Training data's cross-validation performance and labeled test dataset.
I provided clear comments in the process for your understanding. Do let us know if you need any clarifications or if you ar looking for something else.
To use this process in your rapidminer studio, just download this .rmp file attached and then go to studio and click on FILE --> Import Process and navigate it to this downloaded .rmp file.Regards,
Varun
https://www.varunmandalapu.com/Be Safe. Follow precautions and Maintain Social Distancing
7
Answers
If you have a country variable in your data, you can loop values operator and then inside that you can use filter examples based on the macro in loop values operator and build a model inside loop.
This will help you create multiple models based on data.
Varun
https://www.varunmandalapu.com/
Be Safe. Follow precautions and Maintain Social Distancing
But I'm still not fully understand, let's say I have 30 countries
So I will run on the loop and create 30 models, but then I want to test in on the test data?
All I need to make inside the loop?