mnist Questions

5

Solved

I have a pkl file from MNIST dataset, which consists of handwritten digit images. I'd like to take a look at each of those digit images, so I need to unpack the pkl file. Is there a way to unpack/u...
Poachy asked 23/7, 2014 at 8:58

3

I am training an autoencoder on MNIST, and noticed that increasing the batch size after 128, starts taking more computation time on a fixed dataset size. I am using tensorflow-gpu and have GeForce...
Exurbia asked 30/4, 2019 at 13:35

4

I'm currently training a Feedforward Neural Network on the MNIST data set using Keras. I'm loading the data set using the format (X_train, Y_train), (X_test, Y_test) = mnist.load_data() but then ...
Staciastacie asked 6/7, 2018 at 2:20

3

I am following some tutorials and I keep seeing different numbers that seem quite arbitrary to me in the transforms section namely, transform = transforms.Compose([transforms.ToTensor(), transforms...
Dejected asked 27/12, 2020 at 15:57

6

I'm trying to load the MNIST Original dataset in Python. The sklearn.datasets.fetch_openml function doesn't seem to work for this. Here is the code I'm using- from sklearn.datasets import fetch_...
Snug asked 25/1, 2019 at 12:6

3

I am doing research on machine learning. Now I want to test my algorithms with some famous datasets. Since I am a newbie in this area, I can't find other suitable datasets apart from MNIST. I thing...
Punctate asked 23/3, 2013 at 8:38

4

Solved

I'm trying to decode the dataset from this source: http://yann.lecun.com/exdb/mnist/ There is a description of the "very simple" IDX file type in the bottom, but I cannot figure it out. What I'm ...
Adolphus asked 29/7, 2014 at 20:16

5

I've looked everywhere but couldn't quite find what I want. Basically the MNIST dataset has images with pixel values in the range [0, 255]. People say that in general, it is good to do the followin...
Coxcombry asked 4/9, 2020 at 18:13

5

Solved

I was learning to do classification with the MNIST dataset. And I got an error which I am not able to figure out, I have done a lot of google searches and I am not able to do anything, maybe you ar...
Enos asked 30/12, 2020 at 11:19

2

I want to download the MNIST images to my computer as PNG files. I found this page: http://yann.lecun.com/exdb/mnist/ After I pressed: train-images-idx3-ubyte.gz: training set images (9912422 bytes...
Commodious asked 7/3, 2019 at 17:17

8

I have created a simple function for facerecognition by using the facerecognizer from OpenCV. It works all fine with images from people. Now I would like to make a test by using handwritten charac...
Diverge asked 4/11, 2016 at 16:22

4

Solved

I would like to understand how to open this version of the MNIST data set. For example, the training set label file train-labels-idx1-ubyte is defined as: TRAINING SET LABEL FILE (train-labels-id...
Slicker asked 11/10, 2016 at 1:13

2

TLDR I have been trying to fit a simple neural network on MNIST, and it works for a small debugging setup, but when I bring it over to a subset of MNIST, it trains super fast and the gradient is cl...

3

Solved

I am developing my ANN from scratch which is supposed to classify MNIST database of handwritten digits (0-9). My feed-forward fully connected ANN has to be composed of: One input layer, with 28x28...
Anecdotic asked 10/10, 2022 at 14:13

3

Solved

I am trying to freeze the weights of certain layer in a prediction model with Keras and mnist dataset, but it does not work. The code is like: from keras.layers import Dense, Flatten from keras...
Bini asked 8/3, 2019 at 8:43

12

Solved

When I import tensorflow import tensorflow as tf I don't get an error. However, I do get the error below. I'm using spyder if that helps. As per other questions, I ensured up to date (v1.8) ten...
Halie asked 13/5, 2018 at 6:40

2

Solved

I just started looking into deep learning and started to build a CNN with Keras. So I've noticed that oftentimes when the Dataset MNIST is used, after importing the images, they are getting conve...
Pentstemon asked 30/1, 2020 at 12:45

9

Solved

This question is similar to what asked here and here. Unfortunately, in my case the suggested solution didn't fix the problem. I need to work with the MNIST dataset but I can't fetch it, ev...
Girt asked 16/11, 2017 at 8:32

6

I'm trying to learn TensorFlow and I implemented the MNIST example from the the following link: http://openmachin.es/blog/tensorflow-mnist I want to be able to actually view the training/test image...
Lonilonier asked 11/7, 2016 at 13:35

4

I made my first steps in deep learning by following this tutorial, and everything was going well until I needed to train the network in jupyter notebook. I tried almost everything and I always get ...
Friede asked 10/3, 2019 at 0:43

2

How to give target_transform a function for changing the labels to onehot encoding? For example, the MNIST dataset in torchvision: train_dataset = torchvision.datasets.MNIST(root='./mnist_data/', ...
Flaviaflavian asked 10/8, 2020 at 14:25

4

Solved

I am new to pytorch and are trying to implement a feed forward neural network to classify the mnist data set. I have some problems when trying to use cross-validation. My data has the following sha...
Cannabis asked 22/11, 2019 at 14:25

10

Solved

I'm running tensorflow-gpu on Windows 10 using a simple MINST neural network program. When it tries to run, it encounters a CUBLAS_STATUS_ALLOC_FAILED error. A google search doesn't turn up anythin...
Cree asked 13/12, 2016 at 9:38

4

Solved

I am using mnist dataset for training a capsule network in keras background. After training, I want to display an image from mnist dataset. For loading images, mnist.load_data() is used. The data i...
Scandalmonger asked 13/2, 2019 at 7:1

4

Solved

The MNIST set consists of 60,000 images for training set. While training my Tensorflow, I want to run the train step to train the model with the entire training set. The deep learning example on th...
Tenatenable asked 11/8, 2016 at 15:44

© 2022 - 2024 — McMap. All rights reserved.