How can I reduce extract features from a set of Matrices and vectors to be used in Machine Learning
1 次查看(过去 30 天)
显示 更早的评论
Hello Friends.
I have a task where I need to train a machine learning model to predict a set of outputs from multiple inputs. My inputs are 1000 iterations of a set of 3x 1 vectors, a set of 3x3 covariance matrices and a set of scalars, while my output is just a set of scalars. I cannot use regression learner app because these inputs need to have the same dimensions, any idea on how to unify them?
0 个评论
回答(1 个)
Mahesh Taparia
2020-5-13
Hi
You can vectorised the 3X3 matrix to 9X1, then append with the rest of the features to make the 'd' dimensional input data, (i.e dX1). If the dimension is too high, you can use Principal Component Analysis to reduce that. Now you can use this dataset into regression learner and train your model.
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Linear Regression 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!