Skip to content

Commit

Permalink
add descriptions of functions
Browse files Browse the repository at this point in the history
  • Loading branch information
bojunliu0818 committed Jun 21, 2024
1 parent 6989f22 commit 89f4130
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions tsdart/dataprocessing.py
Original file line number Diff line number Diff line change
@@ -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

Expand Down

0 comments on commit 89f4130

Please sign in to comment.