Skip to content

Commit 3bc53b9

Browse files
authored
Update time_series.ipynb
The description above the corrected code said that the `linear` model could be called with `wide_window`, but instead the `baseline` model was called. So I corrected it to call the `linear` model. The outputs are unchanged and match the description.
1 parent b739f3d commit 3bc53b9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

site/en/tutorials/structured_data/time_series.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1376,7 +1376,7 @@
13761376
"outputs": [],
13771377
"source": [
13781378
"print('Input shape:', wide_window.example[0].shape)\n",
1379-
"print('Output shape:', baseline(wide_window.example[0]).shape)"
1379+
"print('Output shape:', linear(wide_window.example[0]).shape)"
13801380
]
13811381
},
13821382
{

0 commit comments

Comments
 (0)