numo-liblinear 2.1.1 → 2.2.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: da7218c002f8aaf80578116ddb102cd866b3ec50c585412f8e7fd0d320332ba0
4
- data.tar.gz: 7d763d787e4458977722eeb531355a37d181934b881f2b23ae9e0adbf72bc9ac
3
+ metadata.gz: 3c94f77441f3e35b52598ce97a3c9075b5cb7fa1702882057f2897e0e1c1f834
4
+ data.tar.gz: c85eceeb7d3f1018a6ea065d92906eea3ad3b6fca26647d9cc87a0fffd565d54
5
5
  SHA512:
6
- metadata.gz: e10b86d373e13b813c9685f5bfd37efeb984a513345de7d38a52f38d44b78db6673b93b3ce56637ac1c25e62922af43232e5aed796fb3eff9fd4c9f7658b1638
7
- data.tar.gz: 4b693278b26de842bbe7e5968157a3bc84c4f230aeda64f997b7d98f3fda1dca6053044e9d9c41822a35de89b526d0490eafa9bdbb6b9adb3a9f7384ea96f06e
6
+ metadata.gz: 8c61cc234e3519254b61b73950d6e8d213abbe0c52729764bfb2397a4945d6e75da729a1f1cfdba52addf19438082d26a3b9418e4d604e75e21d299938dc4174
7
+ data.tar.gz: 15104aae9746cd46c32e843f746aab07b86ac6ec9c56a4db3ae19da3298db42fb5f0361606b8282f209c2582a8f49f140fdf0fe4de24fb4ba0dec045f854b493
data/CHANGELOG.md CHANGED
@@ -1,3 +1,6 @@
1
+ # 2.2.0
2
+ - Update bundled LIBLINEAR to 2.45
3
+
1
4
  # 2.1.1
2
5
  - Refactor codes and configs with RuboCop.
3
6
 
@@ -658,7 +658,7 @@ void Solver_MCSVM_CS::Solve(double *w)
658
658
  {
659
659
  int i, m, s;
660
660
  int iter = 0;
661
- double *alpha = new double[l*nr_class];
661
+ double *alpha = new double[l*nr_class];
662
662
  double *alpha_new = new double[nr_class];
663
663
  int *index = new int[l];
664
664
  double *QD = new double[l];
@@ -1,7 +1,7 @@
1
1
  #ifndef _LIBLINEAR_H
2
2
  #define _LIBLINEAR_H
3
3
 
4
- #define LIBLINEAR_VERSION 244
4
+ #define LIBLINEAR_VERSION 245
5
5
 
6
6
  #ifdef __cplusplus
7
7
  extern "C" {
@@ -3,6 +3,6 @@
3
3
  module Numo
4
4
  module Liblinear
5
5
  # The version of Numo::Liblienar you are using.
6
- VERSION = '2.1.1'
6
+ VERSION = '2.2.0'
7
7
  end
8
8
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: numo-liblinear
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.1.1
4
+ version: 2.2.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-07-09 00:00:00.000000000 Z
11
+ date: 2022-08-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: numo-narray