Skip to content

Commit 06f4174

Browse files
committed
Fixed docstrings and API docstrings
1 parent b260114 commit 06f4174

File tree

3 files changed

+11
-4
lines changed

3 files changed

+11
-4
lines changed

docs/api.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ stumped
3636

3737
.. autofunction:: stumpy.stumped
3838

39-
gpu-stump
39+
gpu_stump
4040
=========
4141

4242
.. autofunction:: stumpy.gpu_stump(T_A, m, T_B=None, ignore_trivial=True, device_id=0, normalize=True)
@@ -98,7 +98,7 @@ ostinatoed
9898
gpu_ostinato
9999
============
100100

101-
.. autofunction:: gpu_ostinato(Ts, m, device_id=0, normalize=True)
101+
.. autofunction:: stumpy.gpu_ostinato(Ts, m, device_id=0, normalize=True)
102102

103103
mpdist
104104
======

stumpy/chains.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@ def atsc(IL, IR, j):
1111
"""
1212
Compute the anchored time series chain (ATSC)
1313
14+
Note that since the matrix profile indices, `IL` and `IR`, are pre-computed,
15+
this function is agnostic to subsequence normalization.
16+
1417
Parameters
1518
----------
1619
IL : ndarray
@@ -53,6 +56,9 @@ def allc(IL, IR):
5356
"""
5457
Compute the all-chain set (ALLC)
5558
59+
Note that since the matrix profile indices, `IL` and `IR`, are pre-computed,
60+
this function is agnostic to subsequence normalization.
61+
5662
Parameters
5763
----------
5864
IL : ndarray

stumpy/stumpi.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,9 @@
1010
@core.non_normalized(aampi)
1111
class stumpi(object):
1212
"""
13-
Compute an incremental z-normalized matrix profile for streaming data. This
14-
is based on the on-line STOMPI and STAMPI algorithms.
13+
Compute an incremental z-normalized matrix profile for streaming data
14+
15+
This is based on the on-line STOMPI and STAMPI algorithms.
1516
1617
Parameters
1718
----------

0 commit comments

Comments
 (0)