diff --git a/tsdart/dataprocessing.py b/tsdart/dataprocessing.py index 645cd18..d22598c 100644 --- a/tsdart/dataprocessing.py +++ b/tsdart/dataprocessing.py @@ -1,14 +1,14 @@ import numpy as np class Preprocessing: + """ Preprocess the original trajectories to create datasets for training. - def __init__(self, dtype=np.float32): - """ Preprocess the original trajectories to create datasets for training. + Parameters + ---------- + dtype : dtype, default = np.float32 + """ - Parameters - ---------- - dtype : dtype, default = np.float32 - """ + def __init__(self, dtype=np.float32): self._dtype = dtype