From 89f413051fef85f4b4213feb41cac9ff0921519b Mon Sep 17 00:00:00 2001 From: bojunliu0818 Date: Thu, 20 Jun 2024 22:45:26 -0500 Subject: [PATCH] add descriptions of functions --- tsdart/dataprocessing.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) 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