From 3bc53b979fd5477711543867a40b5f09319a5094 Mon Sep 17 00:00:00 2001 From: Salman Khondker Date: Sun, 21 May 2023 20:49:28 +0600 Subject: [PATCH] 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. --- site/en/tutorials/structured_data/time_series.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/en/tutorials/structured_data/time_series.ipynb b/site/en/tutorials/structured_data/time_series.ipynb index 1536a1d012d..0b0eb55bce3 100644 --- a/site/en/tutorials/structured_data/time_series.ipynb +++ b/site/en/tutorials/structured_data/time_series.ipynb @@ -1376,7 +1376,7 @@ "outputs": [], "source": [ "print('Input shape:', wide_window.example[0].shape)\n", - "print('Output shape:', baseline(wide_window.example[0]).shape)" + "print('Output shape:', linear(wide_window.example[0]).shape)" ] }, {