Lab 1 update

This commit is contained in:
omariott 2021-09-21 13:45:32 +01:00
parent da2db912dd
commit 565273f7d1

View File

@ -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",