explaination for CustomScaler
This commit is contained in:
parent
c541cf8f3d
commit
f19a9b4b71
1 changed files with 5 additions and 0 deletions
|
@ -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
|
||||
|
|
Reference in a new issue