Hi All,
I am trying to carry out feature selection using deep learning in the h20 program. I tried following the example on
http://rpackages.ianhowson.com/cran/h2o/man/h2o.deepfeatures.html and i have problems interpreting the outcomes of deep features selected.
The output ( for example prostate.deepfeatures_layer1) for the run was a dataframe with 100 columns (DF.C1 to DF.C100)and the response type of each sample. An excerpt of the output is shown as follows.
============SAMPLE OUTPUT of Deepfeature==============
CAPSULE DF.C1 DF.C2 DF.C3 ...
1 0 0.6168736 0.1234923 0.4583036 ...
2 0 0.9216827 0.6870487 0.3447747 ...
3 0 1.4295688 0.8358843 0.1626315 ...
4 0 0.0000000 1.3041775 0.0000000 ...
...
...
...
======================================================
I was wondering if i can map these columns (DF.C1 to DF.C100) back to the original dataset and determine which features (AGE,RACE,DPROS,DCAPS,PSA,VO;,GLEASON) in the prostate dataset are important?
Thanks