rumale-pipeline 0.24.0 → 0.25.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: cd3ec61c4a23cd7022d5be945e4bd22dadbdb883e6800a7d5e2026b05e6c5cf0
4
- data.tar.gz: a6be2df1a40c169dd46a5b587df6314ab438c507c5bd721d802a422dfcd66bea
3
+ metadata.gz: d500b73dfe1a1a68b061f177fcbfbea34dce2f788586fbb38a8dd5f01ee64841
4
+ data.tar.gz: 9f28673ea35bd5b5fded46b625606b2a54894cb40db66b3733bffb79978ec25d
5
5
  SHA512:
6
- metadata.gz: 8ebc9359645c3e8300e6eb797c9ecbb2da7f99b77522e44d8619562ad3ffcdde681e1ed9256fb7fe5882d36a6c67ccf6c6f6386ee5f0f68a801cc16208305845
7
- data.tar.gz: 14d7861bb9e31aba0924f021f320dc1c0d44e7880f9bdd03e465f3b3bc9d26132bce259317a96f3644f1c9bf753b6896e9fcd6727882c8ad3d01078eea62f842
6
+ metadata.gz: c907887868785face7cb18f3a76b3f81c029e58265cbce3dc453b6dc682dae26f94c65b441a63e7f1504a43009e964fb225e837d986c701bb1637bf77b0f303b
7
+ data.tar.gz: d5c65ad7a430478f0b342ad860fe8c1e094d44a3293009848a4363f25923e9be1834264402db3b9b5043a7e034ee8f25a028fb7a5f8f5323a4defc04e7ce56b8
data/LICENSE.txt CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2022 Atsushi Tatsuma
1
+ Copyright (c) 2022-2023 Atsushi Tatsuma
2
2
  All rights reserved.
3
3
 
4
4
  Redistribution and use in source and binary forms, with or without
@@ -13,7 +13,7 @@ module Rumale
13
13
  # require 'rumale/pipeline/pipeline'
14
14
  #
15
15
  # rbf = Rumale::KernelApproximation::RBF.new(gamma: 1.0, n_components: 128, random_seed: 1)
16
- # svc = Rumale::LinearModel::SVC.new(reg_param: 1.0, fit_bias: true, max_iter: 5000, random_seed: 1)
16
+ # svc = Rumale::LinearModel::SVC.new(reg_param: 1.0, fit_bias: true, max_iter: 5000)
17
17
  # pipeline = Rumale::Pipeline::Pipeline.new(steps: { trs: rbf, est: svc })
18
18
  # pipeline.fit(training_samples, traininig_labels)
19
19
  # results = pipeline.predict(testing_samples)
@@ -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.24.0'
8
+ VERSION = '0.25.0'
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.24.0
4
+ version: 0.25.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - yoshoku
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2022-12-31 00:00:00.000000000 Z
11
+ date: 2023-01-18 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.24.0
33
+ version: 0.25.0
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.24.0
40
+ version: 0.25.0
41
41
  description: Rumale::Pipeline provides classes for chaining transformers and estimators
42
42
  with Rumale interface.
43
43
  email: