Skip to content

Commit

Permalink
Fix typos (TDAmeritrade#960)
Browse files Browse the repository at this point in the history
* Update aamp_stimp.py

Fixed typo

* Update gpu_aamp_stimp.py

Fixed typo

* Update stimp.py

Fixed typo

* Update gpu_stimp.py

Fixed typo
  • Loading branch information
EitanHemed authored Feb 15, 2024
1 parent 84aa588 commit 93cee25
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions stumpy/aamp_stimp.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ class _aamp_stimp:
m_stop : int, default None
The stopping (or maximum) subsequence window size for which a matrix profile
may be computed. When `m_stop = Non`, this is set to the maximum allowable
may be computed. When `m_stop = None`, this is set to the maximum allowable
subsequence window size
m_step : int, default 1
Expand Down Expand Up @@ -380,7 +380,7 @@ class aamp_stimp(_aamp_stimp):
m_stop : int, default None
The stopping (or maximum) subsequence window size for which a matrix profile
may be computed. When `m_stop = Non`, this is set to the maximum allowable
may be computed. When `m_stop = None`, this is set to the maximum allowable
subsequence window size
m_step : int, default 1
Expand Down Expand Up @@ -506,7 +506,7 @@ class aamp_stimped(_aamp_stimp):
m_stop : int, default None
The stopping (or maximum) subsequence window size for which a matrix profile
may be computed. When `m_stop = Non`, this is set to the maximum allowable
may be computed. When `m_stop = None`, this is set to the maximum allowable
subsequence window size
m_step : int, default 1
Expand Down
2 changes: 1 addition & 1 deletion stumpy/gpu_aamp_stimp.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class gpu_aamp_stimp(_aamp_stimp):
m_stop : int, default None
The stopping (or maximum) subsequence window size for which a matrix profile
may be computed. When `m_stop = Non`, this is set to the maximum allowable
may be computed. When `m_stop = None`, this is set to the maximum allowable
subsequence window size
m_step : int, default 1
Expand Down
2 changes: 1 addition & 1 deletion stumpy/gpu_stimp.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ class gpu_stimp(_stimp):
max_m : int, default None
The stopping (or maximum) subsequence window size for which a matrix profile
may be computed. When `m_stop = Non`, this is set to the maximum allowable
may be computed. When `m_stop = None`, this is set to the maximum allowable
subsequence window size
step : int, default 1
Expand Down
6 changes: 3 additions & 3 deletions stumpy/stimp.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ class _stimp:
max_m : int, default None
The stopping (or maximum) subsequence window size for which a matrix profile
may be computed. When `max_m = Non`, this is set to the maximum allowable
may be computed. When `max_m = None`, this is set to the maximum allowable
subsequence window size
step : int, default 1
Expand Down Expand Up @@ -397,7 +397,7 @@ class stimp(_stimp):
max_m : int, default None
The stopping (or maximum) subsequence window size for which a matrix profile
may be computed. When `max_m = Non`, this is set to the maximum allowable
may be computed. When `max_m = None`, this is set to the maximum allowable
subsequence window size
step : int, default 1
Expand Down Expand Up @@ -571,7 +571,7 @@ class stimped(_stimp):
max_m : int, default None
The stopping (or maximum) subsequence window size for which a matrix profile
may be computed. When `max_m = Non`, this is set to the maximum allowable
may be computed. When `max_m = None`, this is set to the maximum allowable
subsequence window size
step : int, default 1
Expand Down

0 comments on commit 93cee25

Please sign in to comment.