rumale-pipeline 0.27.0 → 0.28.1

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: 9ed4e4d42b4d91bc971bb23005d9acce2594e66c322cc75330bc8a831fd9c750
4
- data.tar.gz: bddf7f496d535f7aab5ed889c72835448ec0ac05d88280b79f74723c013f4127
3
+ metadata.gz: 3ce638e5bee849478939fe0bb356a739689de91e7d6b32f6a6d5ea4f5ed1acd9
4
+ data.tar.gz: 7d3929f72758e7a493b8abdbff25257d89e58aa48f3514c78a6d35af0196be5d
5
5
  SHA512:
6
- metadata.gz: d951cc79345912e11c8717aed08949d424e714b504a69b27378032d59e182bbe63660a0801e6da187e4036bc3ac994e12ecc309af3f2e56bf4b66a8114306d4c
7
- data.tar.gz: f0943f035c30499a640cc574b6112a3d1b1b066196b039a53faec4a79f79a30fcc775749f390ea1fd19594ff52d6e6d6a1a2c1e578bd1de06e05eb4f15ebf753
6
+ metadata.gz: c0e228de11b8c54b05f1b15eec4562dbaab6a0f0674e3530aa7223c9919622357921f1c6b7fd1a905fe5cc5c7127c5316120f4c966a5bd1004bfbf98a94139bc
7
+ data.tar.gz: 78d1b46478c1fb8474d39893bf49683776b39fb50171a24a14bd6368d31ca46a34c2f08144a454d5c585670e1aab2016677ae31090d0bd1562cb7f5d1ba1f08d
@@ -43,7 +43,7 @@ module Rumale
43
43
  # @param y [Numo::NArray/Nil] (shape: [n_samples, n_outputs]) The target values or labels to be used for fitting the transformers.
44
44
  # @return [FeatureUnion] The learned feature union itself.
45
45
  def fit(x, y = nil)
46
- @transformers.each { |_k, t| t.fit(x, y) }
46
+ @transformers.each_value { |t| t.fit(x, y) }
47
47
  self
48
48
  end
49
49
 
@@ -5,6 +5,6 @@ module Rumale
5
5
  # Module implements utilities of pipeline that cosists of a chain of transfomers and estimators.
6
6
  module Pipeline
7
7
  # @!visibility private
8
- VERSION = '0.27.0'
8
+ VERSION = '0.28.1'
9
9
  end
10
10
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rumale-pipeline
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.27.0
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-08-26 00:00:00.000000000 Z
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,14 +30,14 @@ dependencies:
30
30
  requirements:
31
31
  - - "~>"
32
32
  - !ruby/object:Gem::Version
33
- version: 0.27.0
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.27.0
40
+ version: 0.28.1
41
41
  description: Rumale::Pipeline provides classes for chaining transformers and estimators
42
42
  with Rumale interface.
43
43
  email:
@@ -76,7 +76,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
76
76
  - !ruby/object:Gem::Version
77
77
  version: '0'
78
78
  requirements: []
79
- rubygems_version: 3.3.26
79
+ rubygems_version: 3.4.22
80
80
  signing_key:
81
81
  specification_version: 4
82
82
  summary: Rumale::Pipeline provides classes for chaining transformers and estimators