rumale-preprocessing 0.29.0 → 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 21b52dc2abee64d5493a1589d601f8d5e58834f55950f288452aaf5e696e391e
4
- data.tar.gz: 772067248fd309a1e404627bf3d68d99feb5e49d5f330d5ce43e64a948f1a7c0
3
+ metadata.gz: 4470067402167d1d7de97d9c6949926bd655e62e35bed6f1d16ac7854adc45f9
4
+ data.tar.gz: b4d418fad07ec88a9923b4db1718384b2d54eece0c6cf9691093b2f99f3bb52e
5
5
  SHA512:
6
- metadata.gz: e477a4066793db295d76ba01a9dd8f4b5a6aae6b84cd2980071c1a94ea61bf1b3ecd4402f239d07e1dde6ecf34c464fc7d32d3553e2013fddb4fac85c24036ea
7
- data.tar.gz: 99fa1d85ebfdacb5d6d1b98d1321d65cf79a483423850102a5639554a57920a024907092e43f4abae2e9514c0ed32e4d2611dd48144a43f1065cec88ba81daad
6
+ metadata.gz: 518fafa6510c75a9c866d1e4c0e405d18cd47398973475ff9dbbaf907f10f291334901c42d74c645d99869c5b6b2e535c0f37fd02716ef26abbb5e169ccfb6d2
7
+ data.tar.gz: ef12518fffbea6c8c44387562bfddc1c150484c5845f24bbb890758d1c477c8e67f5ff70f716dfbb86ae2696eb913286cc2fc5e52f90821069eb8bede38d00ac
@@ -22,7 +22,7 @@ module Rumale
22
22
 
23
23
  # Create a new normalizer for normaliing to L1-norm.
24
24
  def initialize # rubocop:disable Lint/UselessMethodDefinition
25
- super()
25
+ super
26
26
  end
27
27
 
28
28
  # Calculate L1-norms of each sample.
@@ -23,7 +23,7 @@ module Rumale
23
23
 
24
24
  # Create a new normalizer for normaliing to unit L2-norm.
25
25
  def initialize # rubocop:disable Lint/UselessMethodDefinition
26
- super()
26
+ super
27
27
  end
28
28
 
29
29
  # Calculate L2-norms of each sample.
@@ -28,7 +28,7 @@ module Rumale
28
28
 
29
29
  # Create a new encoder for encoding labels to values between 0 and n_classes - 1.
30
30
  def initialize # rubocop:disable Lint/UselessMethodDefinition
31
- super()
31
+ super
32
32
  end
33
33
 
34
34
  # Fit label-encoder to labels.
@@ -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.
@@ -22,7 +22,7 @@ module Rumale
22
22
 
23
23
  # Create a new normalizer for normaliing to max-norm.
24
24
  def initialize # rubocop:disable Lint/UselessMethodDefinition
25
- super()
25
+ super
26
26
  end
27
27
 
28
28
  # Calculate the maximum norms of each sample.
@@ -38,7 +38,7 @@ module Rumale
38
38
 
39
39
  # Create a new encoder for encoding categorical integer features to one-hot-vectors
40
40
  def initialize # rubocop:disable Lint/UselessMethodDefinition
41
- super()
41
+ super
42
42
  end
43
43
 
44
44
  # Fit one-hot-encoder to samples.
@@ -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.
@@ -5,6 +5,6 @@ module Rumale
5
5
  # This module consists of the classes that perform preprocessings.
6
6
  module Preprocessing
7
7
  # @!visibility private
8
- VERSION = '0.29.0'
8
+ VERSION = '1.0.0'
9
9
  end
10
10
  end
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.29.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: 2024-03-30 00:00:00.000000000 Z
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.29.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.29.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.5.7
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: []