Fixed compatibility issue for scikit-learn 0.24

main
Marco Breemhaar 2020-12-31 17:34:26 +01:00
parent 8ebdcffc6b
commit dad239b5a7
1 changed files with 1 additions and 1 deletions

View File

@ -91,7 +91,7 @@
"outputs": [],
"source": [
"from sklearn.datasets import fetch_openml\n",
"mnist = fetch_openml('mnist_784', version=1)\n",
"mnist = fetch_openml('mnist_784', version=1, as_frame=False)\n",
"mnist.keys()"
]
},