rumale 0.12.7 → 0.12.8
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 +4 -4
- data/CHANGELOG.md +4 -1
- data/README.md +1 -1
- data/ext/rumale/extconf.rb +10 -1
- data/lib/rumale/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: cbe91a2e4b8e16a5cf37ae8141ad73a760dbeac2
|
|
4
|
+
data.tar.gz: eac618abc865d6a9a8458afeec91b8f86fcc7b98
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d980b9f3fb0d13bd71a672b4cdc39cef616ec354df5581ec7fb3e793059c0847be8d008a50297328b9a78b7a2b0c146b65aa667b72b9becf56e0f9b1fb279955
|
|
7
|
+
data.tar.gz: 3a24e75f869e64a922202b5e81122f8c19a813fade58914788cd5c239c0c53a27ce5e9bbb7ed1c8c62a11d1f0fa54eb43244e52502f45c4907866b92fd01b405
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,8 @@
|
|
|
1
|
+
# 0.12.8
|
|
2
|
+
- Fix bug that fails to build and install on Windows again. Fix extconf to add Numo::NArray libraries to $lib.
|
|
3
|
+
|
|
1
4
|
# 0.12.7
|
|
2
|
-
- Fix bug that fails to build and install on Windows.
|
|
5
|
+
- Fix bug that fails to build and install on Windows. Add search for Numo::NArray static library path to extconf.
|
|
3
6
|
|
|
4
7
|
# 0.12.6
|
|
5
8
|
- Fix extension codes of decision tree classifier and gradient tree regressor for using Numo::NArray.
|
data/README.md
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
[](https://coveralls.io/github/yoshoku/rumale?branch=master)
|
|
7
7
|
[](https://badge.fury.io/rb/rumale)
|
|
8
8
|
[](https://github.com/yoshoku/rumale/blob/master/LICENSE.txt)
|
|
9
|
-
[](https://www.rubydoc.info/gems/rumale/0.12.
|
|
9
|
+
[](https://www.rubydoc.info/gems/rumale/0.12.8)
|
|
10
10
|
|
|
11
11
|
Rumale (**Ru**by **ma**chine **le**arning) is a machine learning library in Ruby.
|
|
12
12
|
Rumale provides machine learning algorithms with interfaces similar to Scikit-Learn in Python.
|
data/ext/rumale/extconf.rb
CHANGED
|
@@ -10,13 +10,22 @@ $LOAD_PATH.each do |lp|
|
|
|
10
10
|
end
|
|
11
11
|
end
|
|
12
12
|
|
|
13
|
+
unless have_header('numo/narray.h')
|
|
14
|
+
puts 'numo/narray.h not found.'
|
|
15
|
+
exit(1)
|
|
16
|
+
end
|
|
17
|
+
|
|
13
18
|
if RUBY_PLATFORM =~ /mswin|cygwin|mingw/
|
|
14
19
|
$LOAD_PATH.each do |lp|
|
|
15
|
-
if File.exist?
|
|
20
|
+
if File.exist?(File.join(lp, 'numo/libnarray.a'))
|
|
16
21
|
$LDFLAGS = "-L#{lp}/numo #{$LDFLAGS}"
|
|
17
22
|
break
|
|
18
23
|
end
|
|
19
24
|
end
|
|
25
|
+
unless have_library('narray', 'nary_new')
|
|
26
|
+
puts 'libnarray.a not found.'
|
|
27
|
+
exit(1)
|
|
28
|
+
end
|
|
20
29
|
end
|
|
21
30
|
|
|
22
31
|
create_makefile('rumale/rumale')
|
data/lib/rumale/version.rb
CHANGED
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.12.
|
|
4
|
+
version: 0.12.8
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- yoshoku
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2019-07-
|
|
11
|
+
date: 2019-07-15 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: numo-narray
|