ariyurjana
Results
1
comments of
ariyurjana
Hi, from sklearn.base import BaseEstimator, TransformerMixin class scaling_tseries_data(BaseEstimator, TransformerMixin): from sklearn.preprocessing import StandardScaler def __init__(self): self.scale = None def transform(self, X): temp_X1 = X.reshape((X.shape[0] * X.shape[1], X.shape[2])) temp_X1 = self.scale.transform(temp_X1)...