1
0
Fork 0

explaination for CustomScaler

This commit is contained in:
Lukas Winkler 2019-07-29 14:18:15 +02:00
parent c541cf8f3d
commit f19a9b4b71
Signed by: lukas
GPG key ID: 54DE4D798D244853

View file

@ -4,6 +4,11 @@ import numpy as np
class CustomScaler:
"""
This is basically a simpler implementation of `sklearn.preprocessing.StandardScaler` that
allows transforming both parameter sets and the initial data.
"""
def __init__(self):
self.means = None
self.stds = None