kzwkt / wnd-charm

Automatically exported from code.google.com/p/wnd-charm
0 stars 0 forks source link

Feature Group analysis in html file contains weird output #12

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago

In the html file, the link "Feature groups analysis (sum of Fisher scores for 
each family) " contains unexpected entries.

This feature is supposed to be a ranking of how the Fisher weights from each 
feature group score in comparison to the other groups.

Currently, the list as it should appear has been buffered at the top and at the 
bottom by empty entries. Remove these empty entries.

Original issue reported on code.google.com by christop...@nih.gov on 21 Feb 2011 at 11:11

GoogleCodeExporter commented 9 years ago
Feature name parsing code committed now.  Still not hooked up to the report.

Original comment by i...@cathilya.org on 2 Mar 2011 at 5:29

GoogleCodeExporter commented 9 years ago
Hooked up feature parsing code.  Added two vectors to splits to keep track of 
feature and feature-group statistics (got rid of the arrays of doubles and the 
big string that did this). Added a std::map to SetFisherScores to maintain a 
unique set of feature-group names as they get processed. This map is copied to 
the feature-group vector in the split, ordered by mean feature-group weight.  
The split's vector of feature weights is ordered by weight, used to determine 
the weight threshold (to set SignatureWeights below threshold to 0), shortened 
to the features above threshold, and subsequently used in the html report.

Original comment by i...@cathilya.org on 4 Mar 2011 at 5:48