blob: 56ea589199ea868c3540931f201d4fc4e472bf76 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
from .adversarial_scaler import AdversarialScaler
class MaxAbsScaler(AdversarialScaler):
"""# MaxAbsScaler
Scale the data based on the maximum-absolute value in each column"""
def __init__(self, base_directory):
"""# MaxAbsScaler initialization
- Initialize the base directory of the model where it will live
- Initialize the scaler model"""
super().__init__(base_directory)
from sklearn.preprocessing import MaxAbsScaler as MAS
self.scaler_base = MAS()
self.scaler = None
def init(self, data):
"""# Scaler initialization
Initialize the scaler transformation with the data"""
self.scaler = self.scaler_base.fit(data)
return self
def load(self):
"""# Scaler loading
Load the data scaler model from a file"""
from pickle import load
with open(f"{self.base_directory}/portable/maxabs_scaler.pkl", "rb") as fhandle:
self.scaler = load(fhandle)
return self
def save(self):
"""# Scaler saving
Save the data scaler model"""
from pickle import dump
with open(f"{self.base_directory}/portable/maxabs_scaler.pkl", "wb") as fhandle:
dump(self.scaler, fhandle)
def __call__(self, *args, **kwargs):
"""# Scale the given data"""
return self.scaler.transform(*args, **kwargs)
|