weka 0.7.3-java → 0.8.0-java
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +1 -0
- data/.tool-versions +1 -0
- data/CHANGELOG.md +53 -9
- data/CODE_OF_CONDUCT.md +26 -24
- data/MIT-LICENSE.txt +1 -1
- data/README.md +38 -20
- data/lib/weka/classifiers/evaluation.rb +1 -1
- data/lib/weka/concerns/optionizable.rb +3 -3
- data/lib/weka/version.rb +1 -1
- data/weka.gemspec +3 -3
- metadata +11 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3a410b606a04b30761ddc23e87f67079e3fa033c8282029d85cf0e3f444fda9b
|
4
|
+
data.tar.gz: 6cb8837bc43a38fa6c78b3415ea8c67f0231612712a2058193752eca9c0063a6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6222363c2e5d0d42d2fd8f1e9b9f50506cc92b5e381324d2cba8092289e08956047ddf4b38606b3ff390feaf16c36ff399157f704fc298f3020a82dfc13d6257
|
7
|
+
data.tar.gz: 44e28db8a406a08b74adb8e21cf4ee6b509f12405546ca3ffd7c5b86496bbf6bb8404bd5568e65f7f07dc2e8d6b5e6176cf6727b0ff081b767282e8c9136fda9
|
data/.gitignore
CHANGED
data/.tool-versions
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
ruby jruby-9.4.5.0
|
data/CHANGELOG.md
CHANGED
@@ -3,95 +3,138 @@
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
4
4
|
|
5
5
|
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
|
6
|
-
and this project adheres to
|
6
|
+
and this project adheres to
|
7
|
+
[Semantic Versioning](http://semver.org/spec/v2.0.0.html).
|
7
8
|
|
8
9
|
## [Unreleased]
|
9
10
|
|
11
|
+
## [0.8.0] – 2023-12-26
|
12
|
+
|
13
|
+
### Changed
|
14
|
+
- Support JRuby 9.4.0.0+ (Ruby v3 compatibility)
|
15
|
+
|
16
|
+
## [0.7.4] – 2022-03-25
|
17
|
+
|
18
|
+
### Changed
|
19
|
+
|
20
|
+
- Update Weka Jar dependency to weka-dev v3.9.6
|
21
|
+
Please also refer to the weka changelog for included updates & fixes:
|
22
|
+
https://www.cs.waikato.ac.nz/~ml/weka/CHANGELOG-3-9-6
|
23
|
+
- Update dev dependencies
|
24
|
+
|
25
|
+
### Fixed
|
26
|
+
|
27
|
+
- `#use_options` in JRuby v9.3.4.0 (passing kwargs in internal method failed)
|
28
|
+
|
10
29
|
## [0.7.3] – 2021-01-21
|
30
|
+
|
11
31
|
### Changed
|
32
|
+
|
12
33
|
- Update Weka Jar dependency to weka-dev v3.9.5
|
13
34
|
Please also refer to the weka changelog for included updates & fixes:
|
14
35
|
https://www.cs.waikato.ac.nz/~ml/weka/CHANGELOG-3-9-5
|
15
36
|
- Update dev dependencies
|
16
37
|
|
17
38
|
## [0.7.2] – 2020-03-20
|
39
|
+
|
18
40
|
### Changed
|
41
|
+
|
19
42
|
- Update Weka Jar dependency to weka-dev v3.9.4
|
20
43
|
Please also refer to the weka changelog for included updates & fixes:
|
21
44
|
https://www.cs.waikato.ac.nz/~ml/weka/CHANGELOG-3-9-4
|
22
45
|
- Drop shoulda-matchers as dev-dependency
|
23
46
|
|
24
47
|
## [0.7.1] – 2018-11-09
|
48
|
+
|
25
49
|
### Changed
|
50
|
+
|
26
51
|
- Update Weka Jar dependency to weka-dev v3.9.3
|
27
52
|
- Update rake to \~>12.0, jar-dependencies to \~>0.4
|
28
53
|
|
29
54
|
### Fixed
|
55
|
+
|
30
56
|
- Float::NAN check in Weka::Core::Attributes#internal_value_of
|
31
57
|
|
32
58
|
## [0.7.0] – 2018-01-01
|
59
|
+
|
33
60
|
### Added
|
61
|
+
|
34
62
|
- Add new unsupervised attribute filters added in weka-dev v3.9.2
|
35
63
|
- Make classes from weka.filters module available
|
36
64
|
- Make WeightedInstancesHandlerWrapper available in Weka::Classifiers::Meta
|
37
|
-
- Make FilteredClusterer & MakeDensityBasedClusterer available in
|
65
|
+
- Make FilteredClusterer & MakeDensityBasedClusterer available in
|
66
|
+
Weka::Clusterers
|
38
67
|
|
39
68
|
### Changed
|
69
|
+
|
40
70
|
- Update Weka Jar dependency to weka-dev v3.9.2
|
41
71
|
|
42
72
|
## [0.6.0] – 2017-12-17
|
73
|
+
|
43
74
|
### Added
|
75
|
+
|
44
76
|
- #copy method for Weka::Core::Instances
|
45
77
|
|
46
78
|
### Changed
|
79
|
+
|
47
80
|
- Load Jars with jar-dependencies instead of lock_jar gem
|
48
81
|
- Make Weka::Core::Instances#instance_from public
|
49
82
|
|
50
83
|
### Fixed
|
84
|
+
|
51
85
|
- Weka::UnassignedTrainingInstancesError when running #classify/#cluster and
|
52
86
|
#distribution_for on deserialized classfiers and clusterers
|
53
87
|
|
54
|
-
|
55
88
|
## [0.5.0] – 2017-06-17
|
89
|
+
|
56
90
|
### Added
|
91
|
+
|
57
92
|
- #to_m (to Matrix) method for Weka::Core::Instances
|
58
93
|
- Curve classes in Weka::Classifiers::Evaluation module
|
59
94
|
- Allow including additional modules on class building
|
60
95
|
- Rubocop config for project
|
61
96
|
|
62
97
|
### Changed
|
98
|
+
|
63
99
|
- Allow passing a hash to Weka::Core::Instances#add_instance
|
64
100
|
|
65
101
|
### Removed
|
66
|
-
- Block argument in Weka::Core::Instances#initialize
|
67
102
|
|
103
|
+
- Block argument in Weka::Core::Instances#initialize
|
68
104
|
|
69
105
|
## [0.4.0] – 2016-12-22
|
106
|
+
|
70
107
|
### Added
|
108
|
+
|
71
109
|
- C45 converters
|
72
110
|
- Full support for string attributes
|
73
111
|
|
74
112
|
### Removed
|
75
|
-
- ActiveSupport as dependency
|
76
113
|
|
114
|
+
- ActiveSupport as dependency
|
77
115
|
|
78
116
|
## [0.3.0] – 2016-02-10
|
117
|
+
|
79
118
|
### Added
|
119
|
+
|
80
120
|
- Allow adding Instances with missing values
|
81
121
|
- Allow creating DenseInstances with missing values
|
82
122
|
- #merge method for Weka::Core:Instances
|
83
123
|
|
84
|
-
|
85
124
|
## [0.2.0] – 2016-01-19
|
125
|
+
|
86
126
|
### Added
|
127
|
+
|
87
128
|
- Serialization/deserialization functionality
|
88
129
|
- #apply_filters method for Weka::Core::Instances
|
89
130
|
|
90
|
-
|
91
131
|
## [0.1.0] – 2015-12-26
|
132
|
+
|
92
133
|
Initial release
|
93
134
|
|
94
|
-
[
|
135
|
+
[unreleased]: https://github.com/paulgoetze/weka-jruby/compare/v0.8.0...HEAD
|
136
|
+
[0.8.0]: https://github.com/paulgoetze/weka-jruby/compare/v0.7.4...v0.8.0
|
137
|
+
[0.7.4]: https://github.com/paulgoetze/weka-jruby/compare/v0.7.3...v0.7.4
|
95
138
|
[0.7.3]: https://github.com/paulgoetze/weka-jruby/compare/v0.7.2...v0.7.3
|
96
139
|
[0.7.2]: https://github.com/paulgoetze/weka-jruby/compare/v0.7.1...v0.7.2
|
97
140
|
[0.7.1]: https://github.com/paulgoetze/weka-jruby/compare/v0.7.0...v0.7.1
|
@@ -101,4 +144,5 @@ Initial release
|
|
101
144
|
[0.4.0]: https://github.com/paulgoetze/weka-jruby/compare/v0.3.0...v0.4.0
|
102
145
|
[0.3.0]: https://github.com/paulgoetze/weka-jruby/compare/v0.2.0...v0.3.0
|
103
146
|
[0.2.0]: https://github.com/paulgoetze/weka-jruby/compare/v0.1.0...v0.2.0
|
104
|
-
[0.1.0]:
|
147
|
+
[0.1.0]:
|
148
|
+
https://github.com/paulgoetze/weka-jruby/compare/ce6a985017c28ea755290a9baba4d81acddc2d20...v0.1.0
|
data/CODE_OF_CONDUCT.md
CHANGED
@@ -3,32 +3,32 @@
|
|
3
3
|
## Our Pledge
|
4
4
|
|
5
5
|
In the interest of fostering an open and welcoming environment, we as
|
6
|
-
contributors and maintainers pledge to make participation in our project and
|
7
|
-
|
8
|
-
size, disability, ethnicity, sex characteristics, gender identity and
|
9
|
-
level of experience, education, socio-economic status, nationality,
|
10
|
-
appearance, race, religion, or sexual identity and orientation.
|
6
|
+
contributors and maintainers pledge to make participation in our project and our
|
7
|
+
community a harassment-free experience for everyone, regardless of age, body
|
8
|
+
size, disability, ethnicity, sex characteristics, gender identity and
|
9
|
+
expression, level of experience, education, socio-economic status, nationality,
|
10
|
+
personal appearance, race, religion, or sexual identity and orientation.
|
11
11
|
|
12
12
|
## Our Standards
|
13
13
|
|
14
14
|
Examples of behavior that contributes to creating a positive environment
|
15
15
|
include:
|
16
16
|
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
17
|
+
- Using welcoming and inclusive language
|
18
|
+
- Being respectful of differing viewpoints and experiences
|
19
|
+
- Gracefully accepting constructive criticism
|
20
|
+
- Focusing on what is best for the community
|
21
|
+
- Showing empathy towards other community members
|
22
22
|
|
23
23
|
Examples of unacceptable behavior by participants include:
|
24
24
|
|
25
|
-
|
25
|
+
- The use of sexualized language or imagery and unwelcome sexual attention or
|
26
26
|
advances
|
27
|
-
|
28
|
-
|
29
|
-
|
27
|
+
- Trolling, insulting/derogatory comments, and personal or political attacks
|
28
|
+
- Public or private harassment
|
29
|
+
- Publishing others' private information, such as a physical or electronic
|
30
30
|
address, without explicit permission
|
31
|
-
|
31
|
+
- Other conduct which could reasonably be considered inappropriate in a
|
32
32
|
professional setting
|
33
33
|
|
34
34
|
## Our Responsibilities
|
@@ -37,11 +37,11 @@ Project maintainers are responsible for clarifying the standards of acceptable
|
|
37
37
|
behavior and are expected to take appropriate and fair corrective action in
|
38
38
|
response to any instances of unacceptable behavior.
|
39
39
|
|
40
|
-
Project maintainers have the right and responsibility to remove, edit, or
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
40
|
+
Project maintainers have the right and responsibility to remove, edit, or reject
|
41
|
+
comments, commits, code, wiki edits, issues, and other contributions that are
|
42
|
+
not aligned to this Code of Conduct, or to ban temporarily or permanently any
|
43
|
+
contributor for other behaviors that they deem inappropriate, threatening,
|
44
|
+
offensive, or harmful.
|
45
45
|
|
46
46
|
## Scope
|
47
47
|
|
@@ -58,8 +58,9 @@ Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
|
58
58
|
reported by contacting the project team at paul.christoph.goetze@gmail.com. All
|
59
59
|
complaints will be reviewed and investigated and will result in a response that
|
60
60
|
is deemed necessary and appropriate to the circumstances. The project team is
|
61
|
-
obligated to maintain confidentiality with regard to the reporter of an
|
62
|
-
Further details of specific enforcement policies may be posted
|
61
|
+
obligated to maintain confidentiality with regard to the reporter of an
|
62
|
+
incident. Further details of specific enforcement policies may be posted
|
63
|
+
separately.
|
63
64
|
|
64
65
|
Project maintainers who do not follow or enforce the Code of Conduct in good
|
65
66
|
faith may face temporary or permanent repercussions as determined by other
|
@@ -67,8 +68,9 @@ members of the project's leadership.
|
|
67
68
|
|
68
69
|
## Attribution
|
69
70
|
|
70
|
-
This Code of Conduct is adapted from the [Contributor Covenant][homepage],
|
71
|
-
available at
|
71
|
+
This Code of Conduct is adapted from the [Contributor Covenant][homepage],
|
72
|
+
version 1.4, available at
|
73
|
+
https://www.contributor-covenant.org/version/1/4/code-of-conduct.html
|
72
74
|
|
73
75
|
[homepage]: https://www.contributor-covenant.org
|
74
76
|
|
data/MIT-LICENSE.txt
CHANGED
data/README.md
CHANGED
@@ -1,11 +1,10 @@
|
|
1
1
|
# Weka
|
2
2
|
|
3
|
-
[![Gem Version](https://badge.fury.io/rb/weka.svg)](http://badge.fury.io/rb/weka)
|
4
3
|
[![Build Status](https://github.com/paulgoetze/weka-jruby/workflows/JRuby%20CI/badge.svg)](https://github.com/paulgoetze/weka-jruby/workflows/JRuby%20CI/badge.svg)
|
5
|
-
[![
|
6
|
-
[![Open Source Helpers](https://www.codetriage.com/paulgoetze/weka-jruby/badges/users.svg)](https://www.codetriage.com/paulgoetze/weka-jruby)
|
4
|
+
[![Gem Version](https://badge.fury.io/rb/weka.svg)](http://badge.fury.io/rb/weka)
|
7
5
|
|
8
|
-
Machine Learning & Data Mining with JRuby based on the
|
6
|
+
Machine Learning & Data Mining with JRuby based on the
|
7
|
+
[Weka](http://www.cs.waikato.ac.nz/~ml/weka/index.html) Java library.
|
9
8
|
|
10
9
|
## Installation
|
11
10
|
|
@@ -31,29 +30,42 @@ Use Weka's Machine Learning and Data Mining algorithms by requiring the gem:
|
|
31
30
|
require 'weka'
|
32
31
|
```
|
33
32
|
|
34
|
-
The weka gem tries to carry over the namespaces defined in Weka and enhances
|
33
|
+
The weka gem tries to carry over the namespaces defined in Weka and enhances
|
34
|
+
some interfaces in order to allow a more Ruby-ish programming style when using
|
35
|
+
the Weka library.
|
35
36
|
|
36
|
-
The idea behind keeping the namespaces is, that you can also use the
|
37
|
+
The idea behind keeping the namespaces is, that you can also use the
|
38
|
+
[Weka documentation](http://weka.sourceforge.net/doc.dev/) for looking up
|
39
|
+
functionality and classes.
|
37
40
|
|
38
|
-
Please refer to [the gem’s Wiki](https://github.com/paulgoetze/weka-jruby/wiki)
|
39
|
-
detailed information about how to use weka with JRuby and some examplary
|
41
|
+
Please refer to [the gem’s Wiki](https://github.com/paulgoetze/weka-jruby/wiki)
|
42
|
+
for detailed information about how to use weka with JRuby and some examplary
|
43
|
+
code snippets.
|
40
44
|
|
41
45
|
## Development
|
42
46
|
|
43
47
|
1. Check out the repo with `git clone git@github.com:paulgoetze/weka-jruby.git`.
|
44
|
-
2. Set a local environment variable `export JARS_VENDOR=false`.
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
+
2. Set a local environment variable `export JARS_VENDOR=false`. This will
|
49
|
+
prevent compiling the jars into your repo’s /lib directory and will load them
|
50
|
+
from your local maven repository instead. See the
|
51
|
+
[jar-dependencies README](https://github.com/mkristian/jar-dependencies#for-development-you-do-not-need-to-vendor-the-jars-at-all)
|
52
|
+
for more information.
|
48
53
|
3. Run `bin/setup` or `bundle install` to install the dependencies.
|
49
54
|
|
50
|
-
Then, run `rake spec` to run the tests. You can also run `bin/console` or
|
55
|
+
Then, run `rake spec` to run the tests. You can also run `bin/console` or
|
56
|
+
`rake irb` for an interactive prompt that will allow you to experiment.
|
51
57
|
|
52
58
|
## Contributing
|
53
59
|
|
54
|
-
Bug reports and pull requests are welcome on GitHub at
|
60
|
+
Bug reports and pull requests are welcome on GitHub at
|
61
|
+
https://github.com/paulgoetze/weka-jruby. This project is intended to be a safe,
|
62
|
+
welcoming space for collaboration, and contributors are expected to adhere to
|
63
|
+
the
|
64
|
+
[Contributor Covenant Code of Conduct](https://github.com/paulgoetze/weka-jruby/blob/main/CODE_OF_CONDUCT.md).
|
55
65
|
|
56
|
-
For development we use the
|
66
|
+
For development we use the
|
67
|
+
[git branching model](http://nvie.com/posts/a-successful-git-branching-model/)
|
68
|
+
described by [nvie](https://github.com/nvie).
|
57
69
|
|
58
70
|
Here’s how to contribute:
|
59
71
|
|
@@ -63,15 +75,21 @@ Here’s how to contribute:
|
|
63
75
|
4. Push to the branch (`git push origin feature/my-new-feature`)
|
64
76
|
5. Create a new Pull Request
|
65
77
|
|
66
|
-
Please try to add RSpec tests along with your new feature. This will ensure that
|
78
|
+
Please try to add RSpec tests along with your new feature. This will ensure that
|
79
|
+
your code does not break existing functionality and that your feature is working
|
80
|
+
as expected.
|
67
81
|
|
68
|
-
We use [Rubocop](https://github.com/bbatsov/rubocop) for code style
|
69
|
-
Please make sure your contributions comply with the project’s
|
82
|
+
We use [Rubocop](https://github.com/bbatsov/rubocop) for code style
|
83
|
+
recommendations. Please make sure your contributions comply with the project’s
|
84
|
+
Rubocop config.
|
70
85
|
|
71
86
|
## Acknowledgement
|
72
87
|
|
73
|
-
The original ideas for wrapping Weka in JRuby come from
|
88
|
+
The original ideas for wrapping Weka in JRuby come from
|
89
|
+
[@arrigonialberto86](https://github.com/arrigonialberto86) and his
|
90
|
+
[ruby-band](https://github.com/arrigonialberto86/ruby-band) gem. Great thanks!
|
74
91
|
|
75
92
|
## License
|
76
93
|
|
77
|
-
The gem is available as open source under the terms of the
|
94
|
+
The gem is available as open source under the terms of the
|
95
|
+
[MIT License](https://github.com/paulgoetze/weka-jruby/blob/main/MIT-LICENSE.txt).
|
@@ -29,10 +29,10 @@ module Weka
|
|
29
29
|
|
30
30
|
private
|
31
31
|
|
32
|
-
def join_options(
|
32
|
+
def join_options(single_options, hash_options)
|
33
33
|
[
|
34
|
-
join_single_options(
|
35
|
-
join_hash_options(
|
34
|
+
join_single_options(single_options),
|
35
|
+
join_hash_options(hash_options)
|
36
36
|
].reject(&:empty?).join(' ')
|
37
37
|
end
|
38
38
|
|
data/lib/weka/version.rb
CHANGED
data/weka.gemspec
CHANGED
@@ -16,7 +16,7 @@ Gem::Specification.new do |spec|
|
|
16
16
|
spec.license = 'MIT'
|
17
17
|
|
18
18
|
spec.platform = 'java'
|
19
|
-
spec.required_ruby_version = '
|
19
|
+
spec.required_ruby_version = '>= 2.0', '< 4.0'
|
20
20
|
|
21
21
|
spec.files = Dir['**/{.*,*}'].reject { |f| f.match(%r{^((spec|jars|pkg)/|.*\.lock|lib/.*_jars\.rb)}) || File.directory?(f) }
|
22
22
|
spec.bindir = 'bin'
|
@@ -25,8 +25,8 @@ Gem::Specification.new do |spec|
|
|
25
25
|
|
26
26
|
spec.add_development_dependency 'bundler', '~> 2.0'
|
27
27
|
spec.add_development_dependency 'rake', '~> 13.0'
|
28
|
-
spec.add_development_dependency 'rspec', '~> 3.
|
28
|
+
spec.add_development_dependency 'rspec', '~> 3.12'
|
29
29
|
|
30
30
|
spec.add_runtime_dependency 'jar-dependencies', '~> 0.4.1'
|
31
|
-
spec.requirements << 'jar nz.ac.waikato.cms.weka, weka-dev, 3.9.
|
31
|
+
spec.requirements << 'jar nz.ac.waikato.cms.weka, weka-dev, 3.9.6'
|
32
32
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: weka
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.8.0
|
5
5
|
platform: java
|
6
6
|
authors:
|
7
7
|
- Paul Götze
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2023-12-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
requirement: !ruby/object:Gem::Requirement
|
@@ -43,7 +43,7 @@ dependencies:
|
|
43
43
|
requirements:
|
44
44
|
- - "~>"
|
45
45
|
- !ruby/object:Gem::Version
|
46
|
-
version: '3.
|
46
|
+
version: '3.12'
|
47
47
|
name: rspec
|
48
48
|
type: :development
|
49
49
|
prerelease: false
|
@@ -51,7 +51,7 @@ dependencies:
|
|
51
51
|
requirements:
|
52
52
|
- - "~>"
|
53
53
|
- !ruby/object:Gem::Version
|
54
|
-
version: '3.
|
54
|
+
version: '3.12'
|
55
55
|
- !ruby/object:Gem::Dependency
|
56
56
|
requirement: !ruby/object:Gem::Requirement
|
57
57
|
requirements:
|
@@ -78,6 +78,7 @@ files:
|
|
78
78
|
- ".gitignore"
|
79
79
|
- ".rspec"
|
80
80
|
- ".rubocop.yml"
|
81
|
+
- ".tool-versions"
|
81
82
|
- CHANGELOG.md
|
82
83
|
- CODE_OF_CONDUCT.md
|
83
84
|
- Gemfile
|
@@ -138,17 +139,20 @@ require_paths:
|
|
138
139
|
- lib
|
139
140
|
required_ruby_version: !ruby/object:Gem::Requirement
|
140
141
|
requirements:
|
141
|
-
- - "
|
142
|
+
- - ">="
|
142
143
|
- !ruby/object:Gem::Version
|
143
144
|
version: '2.0'
|
145
|
+
- - "<"
|
146
|
+
- !ruby/object:Gem::Version
|
147
|
+
version: '4.0'
|
144
148
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
145
149
|
requirements:
|
146
150
|
- - ">="
|
147
151
|
- !ruby/object:Gem::Version
|
148
152
|
version: '0'
|
149
153
|
requirements:
|
150
|
-
- jar nz.ac.waikato.cms.weka, weka-dev, 3.9.
|
151
|
-
rubygems_version: 3.
|
154
|
+
- jar nz.ac.waikato.cms.weka, weka-dev, 3.9.6
|
155
|
+
rubygems_version: 3.5.3
|
152
156
|
signing_key:
|
153
157
|
specification_version: 4
|
154
158
|
summary: Machine Learning & Data Mining with JRuby.
|