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
I need to build a prediction model than contain all these methods SOM, DBSCAN, Linear Regression....
I need to build a prediction model than contain all these methods SOM, DBSCAN, Linear Regression, and LIME. I know there are some errors. I need to get a suggestion that has all my methods. (I have Dengue Fever Disease data + Weather Data). if anyone can draw a model to me it will be helpful and appreciate it.
Tagged:
-1
Answers
Let's see.
- Retrieve your data.
- Convert your data from nominal to numerical if needed.
- SOM is Self-Organizing-Map, a dimensionality reduction algorithm. You should reduce your dimensions before clustering. (Like, why clustering if we still have some dimensions/attributes that we don't need?)
- DBSCAN is for clustering, so you should generate your clusters now. Clustering helps you obtaining a little more accuracy in scoring when using a sample, depending on where you put it.
- Now you should generate a sample to apply Linear Regression. This is the important part: you never use dimensionality reduction before the supervised algorithm. But you don't train your algorithm before LIME, you do it inside LIME. That is: put the LIME super operator, inside LIME you should use a Cross Validation or Split Validation to actually obtain the performance, and then inside your validation, you should put your Linear Regression on your training part and the classic Apply Model / Performance on the testing part.
Self-Organizing Map is part of RapidMiner, DBSCAN too. For LIME, you have to install the Operator Toolbox extension.All the best,
Rod.