rumale 0.20.2 → 0.22.2

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.
@@ -3,5 +3,5 @@
3
3
  # Rumale is a machine learning library in Ruby.
4
4
  module Rumale
5
5
  # The version of Rumale you are using.
6
- VERSION = '0.20.2'
6
+ VERSION = '0.22.2'
7
7
  end
@@ -38,11 +38,12 @@ Gem::Specification.new do |spec|
38
38
 
39
39
  spec.metadata = {
40
40
  'homepage_uri' => 'https://github.com/yoshoku/rumale',
41
- 'changelog_uri' => 'https://github.com/yoshoku/rumale/blob/master/CHANGELOG.md',
41
+ 'changelog_uri' => 'https://github.com/yoshoku/rumale/blob/main/CHANGELOG.md',
42
42
  'source_code_uri' => 'https://github.com/yoshoku/rumale',
43
43
  'documentation_uri' => 'https://yoshoku.github.io/rumale/doc/',
44
44
  'bug_tracker_uri' => 'https://github.com/yoshoku/rumale/issues'
45
45
  }
46
46
 
47
47
  spec.add_runtime_dependency 'numo-narray', '>= 0.9.1'
48
+ spec.add_runtime_dependency 'lbfgsb', '>=0.3.0'
48
49
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rumale
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.20.2
4
+ version: 0.22.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - yoshoku
8
- autorequire:
8
+ autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2020-09-05 00:00:00.000000000 Z
11
+ date: 2021-01-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: numo-narray
@@ -24,6 +24,20 @@ dependencies:
24
24
  - - ">="
25
25
  - !ruby/object:Gem::Version
26
26
  version: 0.9.1
27
+ - !ruby/object:Gem::Dependency
28
+ name: lbfgsb
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: 0.3.0
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: 0.3.0
27
41
  description: |
28
42
  Rumale is a machine learning library in Ruby.
29
43
  Rumale provides machine learning algorithms with interfaces similar to Scikit-Learn in Python.
@@ -43,7 +57,7 @@ extensions:
43
57
  - ext/rumale/extconf.rb
44
58
  extra_rdoc_files: []
45
59
  files:
46
- - ".coveralls.yml"
60
+ - ".github/workflows/build.yml"
47
61
  - ".gitignore"
48
62
  - ".rspec"
49
63
  - ".rubocop.yml"
@@ -90,6 +104,8 @@ files:
90
104
  - lib/rumale/ensemble/gradient_boosting_regressor.rb
91
105
  - lib/rumale/ensemble/random_forest_classifier.rb
92
106
  - lib/rumale/ensemble/random_forest_regressor.rb
107
+ - lib/rumale/ensemble/stacking_classifier.rb
108
+ - lib/rumale/ensemble/stacking_regressor.rb
93
109
  - lib/rumale/evaluation_measure/accuracy.rb
94
110
  - lib/rumale/evaluation_measure/adjusted_rand_score.rb
95
111
  - lib/rumale/evaluation_measure/calinski_harabasz_score.rb
@@ -131,6 +147,7 @@ files:
131
147
  - lib/rumale/manifold/mds.rb
132
148
  - lib/rumale/manifold/tsne.rb
133
149
  - lib/rumale/metric_learning/fisher_discriminant_analysis.rb
150
+ - lib/rumale/metric_learning/mlkr.rb
134
151
  - lib/rumale/metric_learning/neighbourhood_component_analysis.rb
135
152
  - lib/rumale/model_selection/cross_validation.rb
136
153
  - lib/rumale/model_selection/function.rb
@@ -190,11 +207,11 @@ licenses:
190
207
  - BSD-2-Clause
191
208
  metadata:
192
209
  homepage_uri: https://github.com/yoshoku/rumale
193
- changelog_uri: https://github.com/yoshoku/rumale/blob/master/CHANGELOG.md
210
+ changelog_uri: https://github.com/yoshoku/rumale/blob/main/CHANGELOG.md
194
211
  source_code_uri: https://github.com/yoshoku/rumale
195
212
  documentation_uri: https://yoshoku.github.io/rumale/doc/
196
213
  bug_tracker_uri: https://github.com/yoshoku/rumale/issues
197
- post_install_message:
214
+ post_install_message:
198
215
  rdoc_options: []
199
216
  require_paths:
200
217
  - lib
@@ -209,8 +226,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
209
226
  - !ruby/object:Gem::Version
210
227
  version: '0'
211
228
  requirements: []
212
- rubygems_version: 3.1.2
213
- signing_key:
229
+ rubygems_version: 3.1.4
230
+ signing_key:
214
231
  specification_version: 4
215
232
  summary: Rumale is a machine learning library in Ruby. Rumale provides machine learning
216
233
  algorithms with interfaces similar to Scikit-Learn in Python.
@@ -1 +0,0 @@
1
- service_name: travis-ci