How to implement feature selection on a fitting ANN?

3 ビュー (過去 30 日間)
Med Aymane Ahajjam
Med Aymane Ahajjam 2017 年 3 月 3 日
コメント済み: Greg Heath 2019 年 5 月 2 日
I want to use feature selection on my neural network model. The sequentialfs function seems to be the perfect tool to do so, but I don't know how to incorporate fun the function handle of MSE. So my question is, is it possible to use MSE as the function that defines the criterion used to select features and to determine when to stop. And if so, how can I achieve that? FYI: MY ANN model takes as input a 6 columns matrix with 5700 observations. I use MSE normalized (percent) to quantify its performance.
  2 件のコメント
Greg Heath
Greg Heath 2017 年 3 月 7 日
WOEFULLY INSUFFICIENT EXPLANATION:
Is this a regression problem or a classification problem?
What are the inputs and outputs?
size(input) = [ I N ] = [ 6 5700 ]
size(output) = [ O N ] = [ ? 5700 ]
Need more details
Greg
Mohammed Hasan Goni
Mohammed Hasan Goni 2017 年 5 月 4 日
I am also having the same Problem. my Problem is Neural Network Regression Problem.Where I have Inputs Inputs 12*156106 Output is 1*156106, where I am trying to remove some the Inputs where the prediction error(RMSE)is less than some amount. Or itcan be said that, I am trying to find something which can be used in random forest PredictoirImportance Option.

サインインしてコメントする。

回答 (1 件)

Greg Heath
Greg Heath 2017 年 5 月 6 日
Although there are fancy ways to rank variables for neural networks, most are (in my opinion, too complicated to waste time over).
What I have found is that sufficiently good variable rankings can be obtained by using simple 1st and 2nd order polynomial models with MATLAB variable selection algorithms.
In doing so I first look at linear and linear with squares before considering cross products.
Those 3 results tend to yield good enough information for rejecting variables with low prediction ability.
Hope this helps.
Thank you for formally accepting my answer
Greg
  2 件のコメント
Xinzhe Yuan
Xinzhe Yuan 2019 年 5 月 1 日
Hi Greg, I know it's a long time after your answer. But I am really new to the feature selection topic and found your answer is propaply helpful to my problem. My question is can you be more specific on the MATLAB variable selection algorithms? Like what are they? Any insight is very appreciated.
Greg Heath
Greg Heath 2019 年 5 月 2 日
Sorry, it's been too long.
Greg

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeGet Started with Statistics and Machine Learning Toolbox についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by