rumale-pipeline 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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8314ac3b79dc1bd9c550d8ad14288159240aa1deee1376cda1fbd98a20a8d6cb
4
- data.tar.gz: d30da4a8e4a57ba1385fdaf42e0c9366b22aeb6d3839c01cf5d102cd716000cb
3
+ metadata.gz: 3ce638e5bee849478939fe0bb356a739689de91e7d6b32f6a6d5ea4f5ed1acd9
4
+ data.tar.gz: 7d3929f72758e7a493b8abdbff25257d89e58aa48f3514c78a6d35af0196be5d
5
5
  SHA512:
6
- metadata.gz: '09378aece95a59e56ad39ebc4561133f64192e0c1534d30cec4bb1c8cbdab3c21d453360f1ce782075715609e334523fec69c448af667cfcb3a2f048940ae989'
7
- data.tar.gz: d1ba502a7560d208c0c8b9d22e8bdfaed94bf7d2b0af770766f3c288066b2162a8e75d27c3d209719c2a6bd9027f3b27a2c1968db60d58d7368e11ac2808c161
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.28.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.28.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-11-12 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.28.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.28.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.4.20
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