nimbus 0.1 → 0.2
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/nimbus/application.rb +19 -6
- data/lib/nimbus/configuration.rb +17 -2
- data/lib/nimbus/forest.rb +31 -6
- data/lib/nimbus/tree.rb +13 -7
- data/spec/fixtures/config.yml +4 -6
- data/spec/fixtures/testing_regression.data +200 -0
- data/spec/fixtures/training_regression.data +800 -0
- data/spec/nimbus_spec.rb +2 -1
- metadata +6 -2
data/spec/nimbus_spec.rb
CHANGED
metadata
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
name: nimbus
|
3
3
|
version: !ruby/object:Gem::Version
|
4
4
|
prerelease:
|
5
|
-
version: "0.
|
5
|
+
version: "0.2"
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
8
8
|
- "Juanjo Baz\xC3\xA1n"
|
@@ -11,7 +11,7 @@ autorequire:
|
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
13
|
|
14
|
-
date: 2011-08-
|
14
|
+
date: 2011-08-03 00:00:00 Z
|
15
15
|
dependencies:
|
16
16
|
- !ruby/object:Gem::Dependency
|
17
17
|
name: rspec
|
@@ -46,6 +46,8 @@ files:
|
|
46
46
|
- lib/nimbus/tree.rb
|
47
47
|
- lib/nimbus.rb
|
48
48
|
- spec/fixtures/config.yml
|
49
|
+
- spec/fixtures/testing_regression.data
|
50
|
+
- spec/fixtures/training_regression.data
|
49
51
|
- spec/nimbus_spec.rb
|
50
52
|
- spec/spec_helper.rb
|
51
53
|
- bin/nimbus
|
@@ -80,5 +82,7 @@ specification_version: 3
|
|
80
82
|
summary: Random Forest algorithm for Genomics
|
81
83
|
test_files:
|
82
84
|
- spec/fixtures/config.yml
|
85
|
+
- spec/fixtures/testing_regression.data
|
86
|
+
- spec/fixtures/training_regression.data
|
83
87
|
- spec/nimbus_spec.rb
|
84
88
|
- spec/spec_helper.rb
|