fselector 0.8.0 → 0.8.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/ChangeLog +4 -0
- data/README.md +3 -4
- data/lib/fselector.rb +1 -1
- metadata +3 -3
data/ChangeLog
CHANGED
@@ -1,3 +1,7 @@
|
|
1
|
+
2012-04-23 version 0.8.1
|
2
|
+
|
3
|
+
* 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
|
4
|
+
|
1
5
|
2012-04-23 version 0.8.0
|
2
6
|
|
3
7
|
* add new algorithm FTest (FT) for continuous feature
|
data/README.md
CHANGED
@@ -8,7 +8,7 @@ FSelector: a Ruby gem for feature selection and ranking
|
|
8
8
|
**Email**: [need47@gmail.com](mailto:need47@gmail.com)
|
9
9
|
**Copyright**: 2012
|
10
10
|
**License**: MIT License
|
11
|
-
**Latest Version**: 0.8.
|
11
|
+
**Latest Version**: 0.8.1
|
12
12
|
**Release Date**: April 23 2012
|
13
13
|
|
14
14
|
Synopsis
|
@@ -214,9 +214,8 @@ Usage
|
|
214
214
|
# read the Iris data set (under the test/ directory)
|
215
215
|
r1.data_from_csv('test/iris.csv')
|
216
216
|
|
217
|
-
# discretization by ChiMerge algorithm
|
218
|
-
|
219
|
-
r1.discretize_by_ChiMerge!(4.60)
|
217
|
+
# discretization by ChiMerge algorithm at alpha=0.10
|
218
|
+
r1.discretize_by_ChiMerge!(0.10)
|
220
219
|
|
221
220
|
# apply Fast Correlation-Based Filter (FCBF) algorithm for discrete feature
|
222
221
|
# initialize with discretized data from r1
|
data/lib/fselector.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fselector
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.8.
|
4
|
+
version: 0.8.1
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -13,7 +13,7 @@ date: 2012-04-23 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: rinruby
|
16
|
-
requirement: &
|
16
|
+
requirement: &25316676 !ruby/object:Gem::Requirement
|
17
17
|
none: false
|
18
18
|
requirements:
|
19
19
|
- - ! '>='
|
@@ -21,7 +21,7 @@ dependencies:
|
|
21
21
|
version: 2.0.2
|
22
22
|
type: :runtime
|
23
23
|
prerelease: false
|
24
|
-
version_requirements: *
|
24
|
+
version_requirements: *25316676
|
25
25
|
description: FSelector is a Ruby gem that aims to integrate various feature selection/ranking
|
26
26
|
algorithms and related functions into one single package. Welcome to contact me
|
27
27
|
(need47@gmail.com) if you'd like to contribute your own algorithms or report a bug.
|