Attribute selection

Hello,

there is a way to select (automatically with some sort of algo or function in deeplearning4j or other libs) the best attributes from a set of attributes?

the example like this one
0,1,2,red
0,3,4,green
0,5,6,blue
0,1,3,red
0,2,4,green

it’s clear that col1 it’s useless, it’s always 0.

but other scenario can also apply, where an attribute “influence” it’s not important for the classification. It’s possible to determinate a set of best attributes to use and make the network work better?

@ramarro123 that’s a bit outside the scope of the framework. You typically use something like chi-squred tests or PCA for that kind of thing. You may want to look at something like smile for that: https://haifengl.github.io/

It isn’t automatic, but if you are mostly looking to understand your data better in order to decide which features to drop, you can use the analysis feature in data vec.

For example see: Quickstart with Deeplearning4J – dubs·tech