rumale-linear_model 0.28.1 → 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: c9002bcbf36a748cb91b7741fc09e54ef9d99406bc1f0d1e2855ea3c49d7592c
4
- data.tar.gz: 952fd8f7668d93915f0254f1c7b1c78ec7a2b235d0bd78b41e2d4046cc0d9559
3
+ metadata.gz: 9d4ad1aadabae191696ad9948c39df5303d166494d4a0dabc1c50919e99ea860
4
+ data.tar.gz: 5f4a8d92611462cda359e7b4f456ff1f05641678071255d668239d7e602a3de9
5
5
  SHA512:
6
- metadata.gz: f7e03b9b3e2055a8809d7759177f3ac6159cdf520cc25aeff10ee88ad6575c6d335143bbe026f8d47a50298c0c6c4bee5a9e4bbabaa5ff2467b7d1b46c5e69e0
7
- data.tar.gz: 12094e249ae26a47f7e3c90abcab55d10f9678a3782f7c30b65b78a51f2da630cf97268af51bc13558341819d7fd432705ed1d0feb6c14afff4bb7efcdc361ac
6
+ metadata.gz: 6212826060eb90dab89ea5cbf0a05377d5e4e7323fc5072a4fa7c880d86506b9db8bac3c7e6e1805d8bcabdfdeedd90f9352cff8c97cf935a4daae06752c6ac6
7
+ data.tar.gz: 79d6fc2235545b52fcbcdd99fb7cd2ff39a9e3f622bdd57e8672681aef7f0fef3b69d1a8a8cc7b088a18e35aba2bc0ed8d6baef9414c52ca44ab27c03d2e99e4
data/LICENSE.txt CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2022-2023 Atsushi Tatsuma
1
+ Copyright (c) 2022-2024 Atsushi Tatsuma
2
2
  All rights reserved.
3
3
 
4
4
  Redistribution and use in source and binary forms, with or without
@@ -191,7 +191,7 @@ module Rumale
191
191
  class SGDEstimator < Rumale::LinearModel::BaseEstimator
192
192
  # Create an initial linear model with SGD.
193
193
  def initialize
194
- super()
194
+ super
195
195
  @params = {
196
196
  learning_rate: 0.01,
197
197
  decay: nil,
@@ -5,6 +5,6 @@ module Rumale
5
5
  # This module consists of the classes that implement generalized linear models.
6
6
  module LinearModel
7
7
  # @!visibility private
8
- VERSION = '0.28.1'
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-linear_model
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.28.1
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: 2023-12-24 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: lbfgsb
@@ -44,14 +43,14 @@ dependencies:
44
43
  requirements:
45
44
  - - "~>"
46
45
  - !ruby/object:Gem::Version
47
- version: 0.28.1
46
+ version: 1.0.0
48
47
  type: :runtime
49
48
  prerelease: false
50
49
  version_requirements: !ruby/object:Gem::Requirement
51
50
  requirements:
52
51
  - - "~>"
53
52
  - !ruby/object:Gem::Version
54
- version: 0.28.1
53
+ version: 1.0.0
55
54
  description: |
56
55
  Rumale::LinearModel provides linear model algorithms,
57
56
  such as Logistic Regression, Support Vector Machine, Lasso, and Ridge Regression
@@ -87,7 +86,6 @@ metadata:
87
86
  changelog_uri: https://github.com/yoshoku/rumale/blob/main/CHANGELOG.md
88
87
  documentation_uri: https://yoshoku.github.io/rumale/doc/
89
88
  rubygems_mfa_required: 'true'
90
- post_install_message:
91
89
  rdoc_options: []
92
90
  require_paths:
93
91
  - lib
@@ -102,8 +100,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
102
100
  - !ruby/object:Gem::Version
103
101
  version: '0'
104
102
  requirements: []
105
- rubygems_version: 3.4.22
106
- signing_key:
103
+ rubygems_version: 3.6.2
107
104
  specification_version: 4
108
105
  summary: Rumale::LinearModel provides linear model algorithms with Rumale interface.
109
106
  test_files: []