rumale-neural_network 0.28.0 → 0.28.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +2 -2
- data/lib/rumale/neural_network/version.rb +1 -1
- metadata +10 -9
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 34b3d80cb0cf5ed8ceee7b818e53951f758634e425d43d7c34d2692212574400
|
4
|
+
data.tar.gz: df0e2a87fe71d11a8d6499aef95d58d2ff67593dedd56978874fe08ead87d0c3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1b9de5eea216960c8b630395041fb107df285556609e2d1dd5084df0cb7a019a14c3b0cc7f6df4a0413dad697a455030945c6e10218b7d2a78d2eae6459da480
|
7
|
+
data.tar.gz: 77545b4ea31b270d69186a840f883f4aec9c0a7d16b750d7cc731af77dbc4820037d2b6c280458d434e784007751dde8961145eec82b30fa722deee5adce32f0
|
data/README.md
CHANGED
@@ -5,8 +5,8 @@
|
|
5
5
|
[![Documentation](https://img.shields.io/badge/api-reference-blue.svg)](https://yoshoku.github.io/rumale/doc/Rumale/NeuralNetwork.html)
|
6
6
|
|
7
7
|
Rumale is a machine learning library in Ruby.
|
8
|
-
Rumale::NeuralNetwork provides
|
9
|
-
|
8
|
+
Rumale::NeuralNetwork provides classifiers and regression algorithms based on multi-layer perceptron,
|
9
|
+
radial basis function network, and random vector functional link network in the Rumale interface.
|
10
10
|
|
11
11
|
## Installation
|
12
12
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rumale-neural_network
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.28.
|
4
|
+
version: 0.28.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- yoshoku
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-12-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: numo-narray
|
@@ -30,17 +30,17 @@ dependencies:
|
|
30
30
|
requirements:
|
31
31
|
- - "~>"
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version: 0.28.
|
33
|
+
version: 0.28.1
|
34
34
|
type: :runtime
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
38
|
- - "~>"
|
39
39
|
- !ruby/object:Gem::Version
|
40
|
-
version: 0.28.
|
40
|
+
version: 0.28.1
|
41
41
|
description: |
|
42
|
-
Rumale::NeuralNetwork provides
|
43
|
-
|
42
|
+
Rumale::NeuralNetwork provides classifiers and regression algorithms based on multi-layer perceptron,
|
43
|
+
radial basis function network, and random vector functional link network in the Rumale interface.
|
44
44
|
email:
|
45
45
|
- yoshoku@outlook.com
|
46
46
|
executables: []
|
@@ -84,9 +84,10 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
84
84
|
- !ruby/object:Gem::Version
|
85
85
|
version: '0'
|
86
86
|
requirements: []
|
87
|
-
rubygems_version: 3.4.
|
87
|
+
rubygems_version: 3.4.22
|
88
88
|
signing_key:
|
89
89
|
specification_version: 4
|
90
|
-
summary: Rumale::NeuralNetwork provides
|
91
|
-
perceptron
|
90
|
+
summary: Rumale::NeuralNetwork provides classifiers and regression algorithms based
|
91
|
+
on multi-layer perceptron, radial basis function network, and random vector functional
|
92
|
+
link network in the Rumale interface.
|
92
93
|
test_files: []
|