Skip to content

Commit

Permalink
Merge pull request #7 from Mouradost/Mouradost-patch-1
Browse files Browse the repository at this point in the history
Update dtw.py
  • Loading branch information
Mouradost authored Jul 30, 2023
2 parents fc913dd + 64c8d56 commit 62a6761
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/helpers/dtw.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,9 +111,9 @@ def sequential_dtw(x: np.ndarray, y: np.ndarray) -> np.ndarray:
def main(
path,
start: int = 0,
end: int = -1,
end: int = None,
node_start: int = 0,
node_end: int = -1,
node_end: int = None,
name: str = "dtw",
use_parrallel: bool = True,
):
Expand Down

0 comments on commit 62a6761

Please sign in to comment.