rumale-preprocessing 0.24.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 +7 -0
- data/LICENSE.txt +27 -0
- data/README.md +34 -0
- data/lib/rumale/preprocessing/bin_discretizer.rb +97 -0
- data/lib/rumale/preprocessing/binarizer.rb +65 -0
- data/lib/rumale/preprocessing/kernel_calculator.rb +98 -0
- data/lib/rumale/preprocessing/l1_normalizer.rb +67 -0
- data/lib/rumale/preprocessing/l2_normalizer.rb +68 -0
- data/lib/rumale/preprocessing/label_binarizer.rb +86 -0
- data/lib/rumale/preprocessing/label_encoder.rb +75 -0
- data/lib/rumale/preprocessing/max_abs_scaler.rb +65 -0
- data/lib/rumale/preprocessing/max_normalizer.rb +67 -0
- data/lib/rumale/preprocessing/min_max_scaler.rb +78 -0
- data/lib/rumale/preprocessing/one_hot_encoder.rb +94 -0
- data/lib/rumale/preprocessing/ordinal_encoder.rb +111 -0
- data/lib/rumale/preprocessing/polynomial_features.rb +114 -0
- data/lib/rumale/preprocessing/standard_scaler.rb +74 -0
- data/lib/rumale/preprocessing/version.rb +10 -0
- data/lib/rumale/preprocessing.rb +19 -0
- metadata +97 -0
metadata
ADDED
@@ -0,0 +1,97 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: rumale-preprocessing
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.24.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- yoshoku
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2022-12-31 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: numo-narray
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ">="
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: 0.9.1
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ">="
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: 0.9.1
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rumale-core
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: 0.24.0
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: 0.24.0
|
41
|
+
description: |
|
42
|
+
Rumale::Preprocessing provides preprocessing techniques,
|
43
|
+
such as L2 normalization, standard scaling, and one-hot encoding,
|
44
|
+
with Rumale interface.
|
45
|
+
email:
|
46
|
+
- yoshoku@outlook.com
|
47
|
+
executables: []
|
48
|
+
extensions: []
|
49
|
+
extra_rdoc_files: []
|
50
|
+
files:
|
51
|
+
- LICENSE.txt
|
52
|
+
- README.md
|
53
|
+
- lib/rumale/preprocessing.rb
|
54
|
+
- lib/rumale/preprocessing/bin_discretizer.rb
|
55
|
+
- lib/rumale/preprocessing/binarizer.rb
|
56
|
+
- lib/rumale/preprocessing/kernel_calculator.rb
|
57
|
+
- lib/rumale/preprocessing/l1_normalizer.rb
|
58
|
+
- lib/rumale/preprocessing/l2_normalizer.rb
|
59
|
+
- lib/rumale/preprocessing/label_binarizer.rb
|
60
|
+
- lib/rumale/preprocessing/label_encoder.rb
|
61
|
+
- lib/rumale/preprocessing/max_abs_scaler.rb
|
62
|
+
- lib/rumale/preprocessing/max_normalizer.rb
|
63
|
+
- lib/rumale/preprocessing/min_max_scaler.rb
|
64
|
+
- lib/rumale/preprocessing/one_hot_encoder.rb
|
65
|
+
- lib/rumale/preprocessing/ordinal_encoder.rb
|
66
|
+
- lib/rumale/preprocessing/polynomial_features.rb
|
67
|
+
- lib/rumale/preprocessing/standard_scaler.rb
|
68
|
+
- lib/rumale/preprocessing/version.rb
|
69
|
+
homepage: https://github.com/yoshoku/rumale
|
70
|
+
licenses:
|
71
|
+
- BSD-3-Clause
|
72
|
+
metadata:
|
73
|
+
homepage_uri: https://github.com/yoshoku/rumale
|
74
|
+
source_code_uri: https://github.com/yoshoku/rumale/tree/main/rumale-preprocessing
|
75
|
+
changelog_uri: https://github.com/yoshoku/rumale/blob/main/CHANGELOG.md
|
76
|
+
documentation_uri: https://yoshoku.github.io/rumale/doc/
|
77
|
+
rubygems_mfa_required: 'true'
|
78
|
+
post_install_message:
|
79
|
+
rdoc_options: []
|
80
|
+
require_paths:
|
81
|
+
- lib
|
82
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
83
|
+
requirements:
|
84
|
+
- - ">="
|
85
|
+
- !ruby/object:Gem::Version
|
86
|
+
version: '0'
|
87
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
88
|
+
requirements:
|
89
|
+
- - ">="
|
90
|
+
- !ruby/object:Gem::Version
|
91
|
+
version: '0'
|
92
|
+
requirements: []
|
93
|
+
rubygems_version: 3.3.26
|
94
|
+
signing_key:
|
95
|
+
specification_version: 4
|
96
|
+
summary: Rumale::Preprocessing provides preprocessing techniques with Rumale interface.
|
97
|
+
test_files: []
|