rb-libsvm 1.1.0 → 1.1.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/README.md +5 -5
- data/ext/libsvm/svm.cpp +3 -0
- data/ext/libsvm/svm.h +1 -1
- data/lib/libsvm/version.rb +1 -1
- metadata +3 -3
data/README.md
CHANGED
|
@@ -21,7 +21,7 @@ this gem. You should install the original package if you need them.
|
|
|
21
21
|
It is helpful to consult the [README][] of the LIBSVM package for
|
|
22
22
|
reference when configuring the training parameters.
|
|
23
23
|
|
|
24
|
-
Currently this package includes libsvm version 3.
|
|
24
|
+
Currently this package includes libsvm version 3.16.
|
|
25
25
|
|
|
26
26
|
## Dependencies
|
|
27
27
|
|
|
@@ -79,13 +79,13 @@ gem's name (`rb-libsvm`).
|
|
|
79
79
|
|
|
80
80
|
## Author
|
|
81
81
|
|
|
82
|
-
Written by C. Florian Ebeling.
|
|
82
|
+
Written by [C. Florian Ebeling](https://github.com/febeling).
|
|
83
83
|
|
|
84
84
|
## Contributors
|
|
85
85
|
|
|
86
|
-
[Rimas Silkaitis](https://github.com/neovintage)
|
|
87
|
-
[Aleksander Pohl](https://github.com/apohllo)
|
|
88
|
-
[Andreas Eger](https://github.com/sch1zo)
|
|
86
|
+
* [Rimas Silkaitis](https://github.com/neovintage)
|
|
87
|
+
* [Aleksander Pohl](https://github.com/apohllo)
|
|
88
|
+
* [Andreas Eger](https://github.com/sch1zo)
|
|
89
89
|
|
|
90
90
|
## License
|
|
91
91
|
|
data/ext/libsvm/svm.cpp
CHANGED
|
@@ -2973,6 +2973,9 @@ void svm_free_model_content(svm_model* model_ptr)
|
|
|
2973
2973
|
free(model_ptr->probB);
|
|
2974
2974
|
model_ptr->probB= NULL;
|
|
2975
2975
|
|
|
2976
|
+
free(model_ptr->sv_indices);
|
|
2977
|
+
model_ptr->sv_indices = NULL;
|
|
2978
|
+
|
|
2976
2979
|
free(model_ptr->nSV);
|
|
2977
2980
|
model_ptr->nSV = NULL;
|
|
2978
2981
|
}
|
data/ext/libsvm/svm.h
CHANGED
data/lib/libsvm/version.rb
CHANGED
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.1.
|
|
4
|
+
version: 1.1.1
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -10,7 +10,7 @@ authors:
|
|
|
10
10
|
autorequire:
|
|
11
11
|
bindir: bin
|
|
12
12
|
cert_chain: []
|
|
13
|
-
date: 2013-
|
|
13
|
+
date: 2013-02-02 00:00:00.000000000 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: rake-compiler
|
|
@@ -99,7 +99,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
99
99
|
version: '0'
|
|
100
100
|
requirements: []
|
|
101
101
|
rubyforge_project: rb-libsvm
|
|
102
|
-
rubygems_version: 1.8.
|
|
102
|
+
rubygems_version: 1.8.25
|
|
103
103
|
signing_key:
|
|
104
104
|
specification_version: 3
|
|
105
105
|
summary: Ruby language bindings for LIBSVM
|