You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/Tutorial_Semantic_Segmentation.ipynb
+7-6Lines changed: 7 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -166,7 +166,7 @@
166
166
{
167
167
"data": {
168
168
"text/plain": [
169
-
"<matplotlib.patches.Rectangle at 0x1a1b22ac50>"
169
+
"<matplotlib.patches.Rectangle at 0x1a1af70c50>"
170
170
]
171
171
},
172
172
"execution_count": 4,
@@ -216,7 +216,7 @@
216
216
{
217
217
"data": {
218
218
"text/plain": [
219
-
"<matplotlib.patches.FancyArrowPatch at 0x1a1bbfbe50>"
219
+
"<matplotlib.patches.FancyArrowPatch at 0x1a1b942f50>"
220
220
]
221
221
},
222
222
"execution_count": 5,
@@ -336,7 +336,7 @@
336
336
{
337
337
"data": {
338
338
"text/plain": [
339
-
"<matplotlib.lines.Line2D at 0x1a1eeeaa50>"
339
+
"<matplotlib.lines.Line2D at 0x1a1ecba590>"
340
340
]
341
341
},
342
342
"execution_count": 8,
@@ -397,7 +397,7 @@
397
397
{
398
398
"data": {
399
399
"text/plain": [
400
-
"[<matplotlib.lines.Line2D at 0x1a1f5a1210>]"
400
+
"[<matplotlib.lines.Line2D at 0x1a1f6e48d0>]"
401
401
]
402
402
},
403
403
"execution_count": 10,
@@ -491,8 +491,9 @@
491
491
"You can now update the `stream` with a new data points `t` via the `stream.update(t)` function and this will slide your window over by one data point and it will automatically update:\n",
492
492
"\n",
493
493
"1. the `CAC_1D` (accessed via the `.cac_` attribute)\n",
494
-
"2. the matrix profile (accessed via the `.mp_` attribute)\n",
495
-
"3. the sliding window of data used to produce the `CAC_1D` (accessed via the `.T_` attribute - this should be the same size as the length of the `old_data\\)\n",
494
+
"2. the matrix profile (accessed via the `.P_` attribute)\n",
495
+
"3. the matrix profile indices (accessed via the `.I_` attribute)\n",
496
+
"4. the sliding window of data used to produce the `CAC_1D` (accessed via the `.T_` attribute - this should be the same size as the length of the `old_data\\)\n",
496
497
"\n",
497
498
"Let's continuosly update our `stream` with the `new_data` one value at a time and store them in a list (you'll see why in a second):"
0 commit comments