mirror of
https://github.com/ArthurDanjou/handson-ml3.git
synced 2026-02-02 21:17:49 +01:00
Change function argument
In Exercise 9, function `mnist_dataset` was called with the wrong argument.
This commit is contained in:
@@ -2040,8 +2040,8 @@
|
|||||||
"outputs": [],
|
"outputs": [],
|
||||||
"source": [
|
"source": [
|
||||||
"train_set = mnist_dataset(train_filepaths, shuffle_buffer_size=60000)\n",
|
"train_set = mnist_dataset(train_filepaths, shuffle_buffer_size=60000)\n",
|
||||||
"valid_set = mnist_dataset(train_filepaths)\n",
|
"valid_set = mnist_dataset(valid_filepaths)\n",
|
||||||
"test_set = mnist_dataset(train_filepaths)"
|
"test_set = mnist_dataset(test_filepaths)"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user