I want to run a ML regression model for my variables which are in format of map( image). Do I need to quantify the map to run the model?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Hi,
I am new in MATLAB and for my research, I started to learn how to run machine learning based models in MATLAB.
Here is a bit about my project:
The dependent variable (Mean Radiant Temperature) and the independent variables(Urban Spatial Factors: building height, H/W, LULC,... some are numeric and others are ) are all maps(output of other application). What I am expecting from this model is to predict MRT based on what different value of other dependent variables.
My question is do I need to quantify the maps before importing into matlab? and How can I do that?
0 comentarios
Respuestas (1)
Udit06
el 25 de Oct. de 2023
Hi Modjrian,
I understand that you want to use machine learning models to predict mean radiant temperature(MRT) and your independent variables include image maps obtained as output of other applications. It is not necessary to quantify the maps before importing them for machine learning tasks, but you could apply some preprocessing steps on the image data before using it for training machine learning model.
1) If your maps have different statistical distributions, you can normalize them to have zero mean and unit variance using the "zscore" function. You can refer the following MathWorks documentation to understand more about the "zscore" function.
2) If your maps have multiple channels or layers, you may want to extract specific features or combine them into a single representation. You can refer to the following MathWorks documentation to understand more about different feature extraction techniques.
I hope this helps.
0 comentarios
Ver también
Categorías
Más información sobre Get Started with Statistics and Machine Learning Toolbox en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!