rb-libsvm 1.4.0 → 1.4.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.
- checksums.yaml +5 -5
- data/.travis.yml +3 -4
- data/README.md +2 -0
- data/lib/libsvm/version.rb +1 -1
- data/rb-libsvm.gemspec +1 -0
- metadata +5 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 35ec637fce275852d016e8038931919cca00f709afd6230855d222b73ed4a584
|
|
4
|
+
data.tar.gz: 0c37947f85297615662185473fe05565bf3a58f44ca4f816e441d9852a3115f6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8728ec8d7c28156281240097da927be3183d5f19a415850c7c5b6d1dc62c3f504e43011581d8a0a0b727bf5efe51f6c4ecbc7f0066257b6eb866b91ba6c02609
|
|
7
|
+
data.tar.gz: 45b8aeb3b83d0bdd0392485024ab47eb4e3feea6d49e3456960e8ca39b5bea5ef3b70d9a1b52adc1dfe4321a16617199bbdedd8c63c479d451fbd52d7e6a430d
|
data/.travis.yml
CHANGED
data/README.md
CHANGED
|
@@ -101,6 +101,8 @@ the license in the file LIBSVM-LICENSE.
|
|
|
101
101
|
|
|
102
102
|
### Posts about using SVMs with Ruby
|
|
103
103
|
|
|
104
|
+
https://www.practicalai.io/implementing-classification-using-a-svm-in-ruby/
|
|
105
|
+
|
|
104
106
|
http://neovintage.blogspot.com/2011/11/text-classification-using-support.html
|
|
105
107
|
|
|
106
108
|
http://www.igvita.com/2008/01/07/support-vector-machines-svm-in-ruby/
|
data/lib/libsvm/version.rb
CHANGED
data/rb-libsvm.gemspec
CHANGED
|
@@ -11,6 +11,7 @@ Gem::Specification.new do |s|
|
|
|
11
11
|
s.summary = %q{Ruby bindings for LIBSVM}
|
|
12
12
|
s.description = %q{Self-contained LIBSVM package for Ruby (that doesn't use SWIG). LIBSVM is a popular implementation of SVM, a machine learning classifier.}
|
|
13
13
|
s.required_ruby_version = '>= 1.8.7'
|
|
14
|
+
s.licenses = ['MIT']
|
|
14
15
|
|
|
15
16
|
s.rubyforge_project = "rb-libsvm"
|
|
16
17
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rb-libsvm
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.4.
|
|
4
|
+
version: 1.4.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- C. Florian Ebeling
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date:
|
|
12
|
+
date: 2018-06-15 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: rake-compiler
|
|
@@ -82,7 +82,8 @@ files:
|
|
|
82
82
|
- spec/spec_helper.rb
|
|
83
83
|
- spec/usage_spec.rb
|
|
84
84
|
homepage: https://github.com/febeling/rb-libsvm
|
|
85
|
-
licenses:
|
|
85
|
+
licenses:
|
|
86
|
+
- MIT
|
|
86
87
|
metadata: {}
|
|
87
88
|
post_install_message:
|
|
88
89
|
rdoc_options: []
|
|
@@ -100,7 +101,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
100
101
|
version: '0'
|
|
101
102
|
requirements: []
|
|
102
103
|
rubyforge_project: rb-libsvm
|
|
103
|
-
rubygems_version: 2.
|
|
104
|
+
rubygems_version: 2.7.6
|
|
104
105
|
signing_key:
|
|
105
106
|
specification_version: 4
|
|
106
107
|
summary: Ruby bindings for LIBSVM
|