From 565273f7d194f8a4037981d8b6ec9c8173df18db Mon Sep 17 00:00:00 2001 From: omariott Date: Tue, 21 Sep 2021 13:45:32 +0100 Subject: [PATCH] Lab 1 update --- notebooks/01_Introduction.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/notebooks/01_Introduction.ipynb b/notebooks/01_Introduction.ipynb index 1a7493e..6b1a28a 100644 --- a/notebooks/01_Introduction.ipynb +++ b/notebooks/01_Introduction.ipynb @@ -398,7 +398,7 @@ " [1, 2], 3\n", " [4, 5], 6\n", " ```\n", - " * **Extension**: The current data provider only produces `len(data)/window_size` sample points. A better approach is to have it return overlapping windows of the sequence so that more training data instances are produced. For example for the sequence `[1, 2, 3, 4, 5, 6]` the corresponding `input, target` pairs would be\n", + " * **Extension**: The current data provider only produces `len(data)/window_size` sample points. A better approach is to have it return overlapping windows of the sequence so that more training data instances are produced. For example for the same sequence `[1, 2, 3, 4, 5, 6]` the corresponding `input, target` pairs with `window_size=3` would be\n", "\n", "```\n", "[1, 2], 3\n",