-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathfile.ChangeLog.html
169 lines (122 loc) · 6.18 KB
/
file.ChangeLog.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>
File: ChangeLog
— FSelector Documentation
</title>
<link rel="stylesheet" href="css/style.css" type="text/css" media="screen" charset="utf-8" />
<link rel="stylesheet" href="css/common.css" type="text/css" media="screen" charset="utf-8" />
<script type="text/javascript" charset="utf-8">
relpath = '';
if (relpath != '') relpath += '/';
</script>
<script type="text/javascript" charset="utf-8" src="js/jquery.js"></script>
<script type="text/javascript" charset="utf-8" src="js/app.js"></script>
</head>
<body>
<script type="text/javascript" charset="utf-8">
if (window.top.frames.main) document.body.className = 'frames';
</script>
<div id="header">
<div id="menu">
<a href="_index.html" title="Index">Index</a> »
<span class="title">File: ChangeLog</span>
<div class="noframes"><span class="title">(</span><a href="." target="_top">no frames</a><span class="title">)</span></div>
</div>
<div id="search">
<a id="class_list_link" href="#">Class List</a>
<a id="method_list_link" href="#">Method List</a>
<a id="file_list_link" href="#">File List</a>
</div>
<div class="clear"></div>
</div>
<iframe id="search_frame"></iframe>
<div id="content"><div id='filecontents'><h2>2012-11-05 v1.4.0</h2>
<ul>
<li>update according to reviewers' comments</li>
<li>several bug fixes based on users' feedback</li>
</ul>
<h2>2012-05-31 v1.3.1</h2>
<ul>
<li>add HowToContribute section with test examples in README to show how to write one's own feature selection algorithms and/or contribute them to FSelector on GitHub.com</li>
<li>all discretization algorithms now set feature type as CATEGORICAL, this will allow correct file format conversion after discretization</li>
<li>add RandomSubset algorithm (primarily for test purpose)</li>
</ul>
<h2>2012-05-24 v1.3.0</h2>
<ul>
<li>update clear_vars() in Base by use of Ruby metaprogramming, this trick avoids repetitive overriding it in each derived subclass</li>
<li>re-organize LasVegasFilter, LasVegasIncremental and Random into algo_both/, since they are applicable to dataset with either discrete or continuous features, even with mixed type</li>
<li>update data_from_csv() so that it can read CSV file more flexibly. note by default, the last column is class label</li>
<li>add data_from_url() to read on-line dataset (in CSV, LibSVM or Weka ARFF file format) specified by a url</li>
</ul>
<h2>2012-05-20 v1.2.0</h2>
<ul>
<li>add KS-Test algorithm for continuous feature</li>
<li>add KS-CCBF algorithm for continuous feature</li>
<li>add J-Measure algorithm for discrete feature</li>
<li>add KL-Divergence algorithm for discrete feature</li>
<li>include the Discretizer module for algorithms requiring data with discrete feature, which allows to deal with continuous feature after discretization. Those algorithms requiring data with continuous feature now do not include the Discretizer module</li>
</ul>
<h2>2012-05-15 v1.1.0</h2>
<ul>
<li>add replace_by_median_value! for replacing missing value with feature median value</li>
<li>add replace_by_knn_value! for replacing missing value with weighted feature value from k-nearest neighbors</li>
<li>replace_by_mean_value! and replace_by_median_value! now support both column and row mode</li>
<li>add EnsembleSingle class for ensemble feature selection by creating an ensemble of feature selectors using a single feature selection algorithm</li>
<li>rename Ensemble to EnsembleMultiple for ensemble feature selection by creating an ensemble of feature selectors using multiple feature selection algorithms of the same type</li>
<li>bug fix in FileIO module</li>
</ul>
<h2>2012-05-08 v1.0.1</h2>
<ul>
<li>modify Ensemble module so that ensemble_by_score() and ensemble_by_rank() now take Symbol, instead of Method, as argument. This allows easier and clearer function call</li>
<li>enable select_feature! interface in Ensemble module for the type of subset selection algorithms</li>
</ul>
<h2>2012-05-04 v1.0.0</h2>
<ul>
<li>add new algorithm INTERACT for discrete feature</li>
<li>add Consistency module to deal with data inconsistency calculation, which bases on a Hash table and is efficient in both storage and speed</li>
<li>update the Chi2 algorithm to try to reproduce the results of the original Chi2 algorithm</li>
<li>update documentation whenever necessary</li>
</ul>
<h2>2012-04-25 v0.9.0</h2>
<ul>
<li>add new discretization algorithm (Three-Interval Discretization, TID)</li>
<li>add new algorithm Las Vegas Filter (LVF) for discrete feature</li>
<li>add new algorithm Las Vegas Incremental (LVI) for discrete feature</li>
</ul>
<h2>2012-04-23 v0.8.1</h2>
<ul>
<li>correct a bug in the example in the README file because discretize_by_ChiMerge!() now takes confidence alpha value as argument instead of chi-square value</li>
</ul>
<h2>2012-04-23 v0.8.0</h2>
<ul>
<li>add new algorithm FTest (FT) for continuous feature</li>
<li>add .yardoc_opts to gem to use the MarkDown documentation syntax</li>
</ul>
<h2>2012-04-20 v0.7.0</h2>
<ul>
<li>update to v0.7.0</li>
</ul>
<h2>2012-04-19 v0.6.0</h2>
<ul>
<li>add new algorithm BetweenWithinClassesSumOfSquare (BSS_WSS) for continuous feature</li>
<li>add new algorithm WilcoxonRankSum (WRS) for continuous feature</li>
</ul>
<h2>2012-04-18 v0.5.0</h2>
<ul>
<li><p>require the RinRuby gem (<a href="http://rinruby.ddahl.org">http://rinruby.ddahl.org</a>) to access the
statistical routines in the R package (<a href="http://www.r-project.org/">http://www.r-project.org/</a>)</p></li>
<li><p>because of RinRuby (and thus R), removed the following modules or implementations:
RubyStats (FishersExactTest.calculate, get_icdf) and ChiSquareCalculator</p></li>
</ul>
</div></div>
<div id="footer">
Generated on Mon Nov 5 11:19:43 2012 by
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
0.7.5 (ruby-1.9.3).
</div>
</body>
</html>