Fixed sklearn compatibility issue for ch 8 and 9
parent
dad239b5a7
commit
fe2c2a27ca
|
@ -773,7 +773,7 @@
|
|||
"source": [
|
||||
"from sklearn.datasets import fetch_openml\n",
|
||||
"\n",
|
||||
"mnist = fetch_openml('mnist_784', version=1)\n",
|
||||
"mnist = fetch_openml('mnist_784', version=1, as_frame=False)\n",
|
||||
"mnist.target = mnist.target.astype(np.uint8)"
|
||||
]
|
||||
},
|
||||
|
|
|
@ -938,7 +938,7 @@
|
|||
"import urllib\n",
|
||||
"from sklearn.datasets import fetch_openml\n",
|
||||
"\n",
|
||||
"mnist = fetch_openml('mnist_784', version=1)\n",
|
||||
"mnist = fetch_openml('mnist_784', version=1, as_frame=False)\n",
|
||||
"mnist.target = mnist.target.astype(np.int64)"
|
||||
]
|
||||
},
|
||||
|
|
Loading…
Reference in New Issue