Change function argument
In Exercise 9, function `mnist_dataset` was called with the wrong argument.main
parent
1e81324573
commit
cbfefe7a97
|
@ -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)"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue