rumale-preprocessing 0.29.0 → 1.0.0
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/lib/rumale/preprocessing/l1_normalizer.rb +1 -1
- data/lib/rumale/preprocessing/l2_normalizer.rb +1 -1
- data/lib/rumale/preprocessing/label_encoder.rb +1 -1
- data/lib/rumale/preprocessing/max_abs_scaler.rb +1 -1
- data/lib/rumale/preprocessing/max_normalizer.rb +1 -1
- data/lib/rumale/preprocessing/one_hot_encoder.rb +1 -1
- data/lib/rumale/preprocessing/standard_scaler.rb +1 -1
- data/lib/rumale/preprocessing/version.rb +1 -1
- metadata +5 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4470067402167d1d7de97d9c6949926bd655e62e35bed6f1d16ac7854adc45f9
|
4
|
+
data.tar.gz: b4d418fad07ec88a9923b4db1718384b2d54eece0c6cf9691093b2f99f3bb52e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 518fafa6510c75a9c866d1e4c0e405d18cd47398973475ff9dbbaf907f10f291334901c42d74c645d99869c5b6b2e535c0f37fd02716ef26abbb5e169ccfb6d2
|
7
|
+
data.tar.gz: ef12518fffbea6c8c44387562bfddc1c150484c5845f24bbb890758d1c477c8e67f5ff70f716dfbb86ae2696eb913286cc2fc5e52f90821069eb8bede38d00ac
|
@@ -23,7 +23,7 @@ module Rumale
|
|
23
23
|
|
24
24
|
# Creates a new normalizer for scaling each feature with its maximum absolute value.
|
25
25
|
def initialize # rubocop:disable Lint/UselessMethodDefinition
|
26
|
-
super
|
26
|
+
super
|
27
27
|
end
|
28
28
|
|
29
29
|
# Calculate the minimum and maximum value of each feature for scaling.
|
@@ -28,7 +28,7 @@ module Rumale
|
|
28
28
|
|
29
29
|
# Create a new normalizer for centering and scaling to unit variance.
|
30
30
|
def initialize # rubocop:disable Lint/UselessMethodDefinition
|
31
|
-
super
|
31
|
+
super
|
32
32
|
end
|
33
33
|
|
34
34
|
# Calculate the mean value and standard deviation of each feature for scaling.
|
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rumale-preprocessing
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 1.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- yoshoku
|
8
|
-
autorequire:
|
9
8
|
bindir: exe
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 2025-01-02 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
13
12
|
- !ruby/object:Gem::Dependency
|
14
13
|
name: numo-narray
|
@@ -30,14 +29,14 @@ dependencies:
|
|
30
29
|
requirements:
|
31
30
|
- - "~>"
|
32
31
|
- !ruby/object:Gem::Version
|
33
|
-
version: 0.
|
32
|
+
version: 1.0.0
|
34
33
|
type: :runtime
|
35
34
|
prerelease: false
|
36
35
|
version_requirements: !ruby/object:Gem::Requirement
|
37
36
|
requirements:
|
38
37
|
- - "~>"
|
39
38
|
- !ruby/object:Gem::Version
|
40
|
-
version: 0.
|
39
|
+
version: 1.0.0
|
41
40
|
description: |
|
42
41
|
Rumale::Preprocessing provides preprocessing techniques,
|
43
42
|
such as L2 normalization, standard scaling, and one-hot encoding,
|
@@ -75,7 +74,6 @@ metadata:
|
|
75
74
|
changelog_uri: https://github.com/yoshoku/rumale/blob/main/CHANGELOG.md
|
76
75
|
documentation_uri: https://yoshoku.github.io/rumale/doc/
|
77
76
|
rubygems_mfa_required: 'true'
|
78
|
-
post_install_message:
|
79
77
|
rdoc_options: []
|
80
78
|
require_paths:
|
81
79
|
- lib
|
@@ -90,8 +88,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
90
88
|
- !ruby/object:Gem::Version
|
91
89
|
version: '0'
|
92
90
|
requirements: []
|
93
|
-
rubygems_version: 3.
|
94
|
-
signing_key:
|
91
|
+
rubygems_version: 3.6.2
|
95
92
|
specification_version: 4
|
96
93
|
summary: Rumale::Preprocessing provides preprocessing techniques with Rumale interface.
|
97
94
|
test_files: []
|