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
How to set the whole dataset (1000*100) as a label
let's say I have 4 datasets of 1000 rows and 100 columns, and each dataset is a different variable (4 variables), so out of 4, 3 are predictors and one is a target, so how do I set a dataset of 1000*100 as a label so that I can build predicting model using 3 other datasets as predictors, take these datasets as multidimensional dataset
Tagged:
0
Answers
what's your use case? Which problem are you trying to solve?
Traditional machine learning models predict one number (regression) or class (classification) from the predictors. Are you trying to generate an entire dataset here? Including predictors and the label variable?
On the top of my head I don't know of a way to do this in RapidMiner. This would be advanced hackery with generative neural networks or something like this.
Regards,
Balázs
Predicting every 1000x100 area one by one will take time but that's what one would do in this situation.
I guess you have historic data for each area (selected by x, y coordinates for example). Like change 4 years ago, 3 years ago, etc. In this case you would build a model for each area, maybe taking into consideration the neighboring cells.
I would start with a small part (not 100,000 models at once) or aggregate areas into larger ones to get a more robust prediction.
Regards,
Balázs