68680/error-while-loading-mnist-dataset-in-jupyter
Hi Guys,
I am trying to load mnist dataset for NN, but I am not able to do so. I am using the below given code.
from sklearn.datasets import fetch_mldata mnist = fetch_mldata('mnist.db')
Hi@akhtar,
Instead of using sklearn dataset, you can use keras datasets as shown below.
from keras.datasets import mnist data = mnist.load_data('mnist.db')
Hope this will help.
Hi, @Adil, I would suggest you go through ...READ MORE
To install tensorflow you need to have ...READ MORE
Hi@akhtar, I think it should work. But make ...READ MORE
Hi@akhtar, You may get this error because of ...READ MORE
suppose you have a string with a ...READ MORE
You can also use the random library's ...READ MORE
Syntax : list. count(value) Code: colors = ['red', 'green', ...READ MORE
Enumerate() method adds a counter to an ...READ MORE
Hi@akhtar, You can do this task using numpy ...READ MORE
Hi@akhtar, This looks as if you don't load ...READ MORE
OR
At least 1 upper-case and 1 lower-case letter
Minimum 8 characters and Maximum 50 characters
Already have an account? Sign in.