16 datasets found
  1. T

    mnist

    • tensorflow.org
    • universe.roboflow.com
    • +4more
    Updated Jun 1, 2024
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    (2024). mnist [Dataset]. https://www.tensorflow.org/datasets/catalog/mnist
    Explore at:
    Dataset updated
    Jun 1, 2024
    Description

    The MNIST database of handwritten digits.

    To use this dataset:

    import tensorflow_datasets as tfds
    
    ds = tfds.load('mnist', split='train')
    for ex in ds.take(4):
     print(ex)
    

    See the guide for more informations on tensorflow_datasets.

    https://storage.googleapis.com/tfds-data/visualization/fig/mnist-3.0.1.png" alt="Visualization" width="500px">

  2. T

    fashion_mnist

    • tensorflow.org
    • opendatalab.com
    • +3more
    Updated Jun 1, 2024
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    (2024). fashion_mnist [Dataset]. https://www.tensorflow.org/datasets/catalog/fashion_mnist
    Explore at:
    Dataset updated
    Jun 1, 2024
    Description

    Fashion-MNIST is a dataset of Zalando's article images consisting of a training set of 60,000 examples and a test set of 10,000 examples. Each example is a 28x28 grayscale image, associated with a label from 10 classes.

    To use this dataset:

    import tensorflow_datasets as tfds
    
    ds = tfds.load('fashion_mnist', split='train')
    for ex in ds.take(4):
     print(ex)
    

    See the guide for more informations on tensorflow_datasets.

    https://storage.googleapis.com/tfds-data/visualization/fig/fashion_mnist-3.0.1.png" alt="Visualization" width="500px">

  3. T

    moving_mnist

    • tensorflow.org
    • opendatalab.com
    Updated Nov 23, 2022
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    (2022). moving_mnist [Dataset]. https://www.tensorflow.org/datasets/catalog/moving_mnist
    Explore at:
    Dataset updated
    Nov 23, 2022
    Description

    Moving variant of MNIST database of handwritten digits. This is the data used by the authors for reporting model performance. See tfds.video.moving_mnist.image_as_moving_sequence for generating training/validation data from the MNIST dataset.

    To use this dataset:

    import tensorflow_datasets as tfds
    
    ds = tfds.load('moving_mnist', split='train')
    for ex in ds.take(4):
     print(ex)
    

    See the guide for more informations on tensorflow_datasets.

  4. Cifar10_resnet50_embeddings

    • kaggle.com
    zip
    Updated Nov 9, 2023
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    3Jlou 4eJluk (2023). Cifar10_resnet50_embeddings [Dataset]. https://www.kaggle.com/zjlou4ejluk/cifar10-resnet50-embeddings
    Explore at:
    zip(246408215 bytes)Available download formats
    Dataset updated
    Nov 9, 2023
    Authors
    3Jlou 4eJluk
    Description

    Dataset

    This dataset was created by 3Jlou 4eJluk

    Contents

  5. T

    kmnist

    • tensorflow.org
    • datasets.activeloop.ai
    Updated Jun 1, 2024
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    (2024). kmnist [Dataset]. https://www.tensorflow.org/datasets/catalog/kmnist
    Explore at:
    Dataset updated
    Jun 1, 2024
    Description

    Kuzushiji-MNIST is a drop-in replacement for the MNIST dataset (28x28 grayscale, 70,000 images), provided in the original MNIST format as well as a NumPy format. Since MNIST restricts us to 10 classes, we chose one character to represent each of the 10 rows of Hiragana when creating Kuzushiji-MNIST.

    To use this dataset:

    import tensorflow_datasets as tfds
    
    ds = tfds.load('kmnist', split='train')
    for ex in ds.take(4):
     print(ex)
    

    See the guide for more informations on tensorflow_datasets.

    https://storage.googleapis.com/tfds-data/visualization/fig/kmnist-3.0.1.png" alt="Visualization" width="500px">

  6. train_model_tensorflow_mnist

    • kaggle.com
    zip
    Updated Mar 15, 2021
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    Murad Al Dahmashi (2021). train_model_tensorflow_mnist [Dataset]. https://www.kaggle.com/muradaldahmashi/train-model-tensorflow-mnist
    Explore at:
    zip(1165622 bytes)Available download formats
    Dataset updated
    Mar 15, 2021
    Authors
    Murad Al Dahmashi
    Description

    Dataset

    This dataset was created by Murad Al Dahmashi

    Contents

  7. MNIST From Tensorflow Tutorial

    • kaggle.com
    zip
    Updated Nov 23, 2017
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    Arpan Dhatt (2017). MNIST From Tensorflow Tutorial [Dataset]. https://www.kaggle.com/arpandhatt/mnist-from-tensorflow-tutorial
    Explore at:
    zip(23155203 bytes)Available download formats
    Dataset updated
    Nov 23, 2017
    Authors
    Arpan Dhatt
    Description

    Dataset

    This dataset was created by Arpan Dhatt

    Contents

  8. T

    emnist

    • tensorflow.org
    • datasets.activeloop.ai
    Updated Jun 1, 2024
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    (2024). emnist [Dataset]. https://www.tensorflow.org/datasets/catalog/emnist
    Explore at:
    Dataset updated
    Jun 1, 2024
    Description

    The EMNIST dataset is a set of handwritten character digits derived from the NIST Special Database 19 and converted to a 28x28 pixel image format and dataset structure that directly matches the MNIST dataset.

    Note: Like the original EMNIST data, images provided here are inverted horizontally and rotated 90 anti-clockwise. You can use tf.transpose within ds.map to convert the images to a human-friendlier format.

    To use this dataset:

    import tensorflow_datasets as tfds
    
    ds = tfds.load('emnist', split='train')
    for ex in ds.take(4):
     print(ex)
    

    See the guide for more informations on tensorflow_datasets.

    https://storage.googleapis.com/tfds-data/visualization/fig/emnist-byclass-3.1.0.png" alt="Visualization" width="500px">

  9. mnist for tf

    • kaggle.com
    zip
    Updated May 16, 2017
    + more versions
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    JerryWang (2017). mnist for tf [Dataset]. https://www.kaggle.com/miningjerry/mnist-for-tf
    Explore at:
    zip(33667734 bytes)Available download formats
    Dataset updated
    May 16, 2017
    Authors
    JerryWang
    License

    http://opendatacommons.org/licenses/dbcl/1.0/http://opendatacommons.org/licenses/dbcl/1.0/

    Description

    Context

    There's a story behind every dataset and here's your opportunity to share yours.

    Content

    What's inside is more than just rows and columns. Make it easy for others to get started by describing how you acquired the data and what time period it represents, too.

    Acknowledgements

    We wouldn't be here without the help of others. If you owe any attributions or thanks, include them here along with any citations of past research.

    Inspiration

    Your data will be in front of the world's largest data science community. What questions do you want to see answered?

  10. MNIST Restructured

    • kaggle.com
    zip
    Updated Nov 30, 2024
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    Jamal Uddin Tanvin (2024). MNIST Restructured [Dataset]. https://www.kaggle.com/datasets/jamaluddintanvin/mnist-reorganized
    Explore at:
    zip(29833637 bytes)Available download formats
    Dataset updated
    Nov 30, 2024
    Authors
    Jamal Uddin Tanvin
    License

    MIT Licensehttps://opensource.org/licenses/MIT
    License information was derived automatically

    Description

    This dataset is a customized and restructured version of the well-known MNIST handwritten digit dataset by Yann LeCun, Corinna Cortes and Christopher J.C. Burges from THE MNIST DATABASE of handwritten digits. The adjustments are intended to improve usability and make it easier integration into various machine learning workflows.

    Key Features:

    Restructured Image Files: Each digit image is saved as a .png file in separate directories for training and testing.

    CSV Metadata: Includes train_labels.csv and test_labels.csv, mapping image filenames to their respective labels.

    Improved Accessibility: Simplified folder structure for easier dataset exploration and model training.

    Format: Images are grayscale (28x28 pixels), suitable for most deep learning frameworks (TensorFlow, PyTorch, etc.).

    Usage:

    This dataset is ideal for: - Developing and testing classification models for handwritten digit recognition. - Exploring custom preprocessing pipelines for digit datasets. - Comparing model performance on a restructured MNIST dataset.

  11. notMNIST dataset

    • kaggle.com
    zip
    Updated Aug 22, 2017
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    lubaroli (2017). notMNIST dataset [Dataset]. https://www.kaggle.com/lubaroli/notmnist
    Explore at:
    zip(8460905 bytes)Available download formats
    Dataset updated
    Aug 22, 2017
    Authors
    lubaroli
    Description

    Context

    This dataset was created by Yaroslav Bulatov by taking some publicly available fonts and extracting glyphs from them to make a dataset similar to MNIST. There are 10 classes, with letters A-J.

    Content

    A set of training and test images of letters from A to J on various typefaces. The images size is 28x28 pixels.

    Acknowledgements

    The dataset can be found on Tensorflow github page as well as on the blog from Yaroslav, here.

    Inspiration

    This is a pretty good dataset to train classifiers! According to Yaroslav:

    Judging by the examples, one would expect this to be a harder task than MNIST. This seems to be the case -- logistic regression on top of stacked auto-encoder with fine-tuning gets about 89% accuracy whereas same approach gives got 98% on MNIST. Dataset consists of small hand-cleaned part, about 19k instances, and large uncleaned dataset, 500k instances. Two parts have approximately 0.5% and 6.5% label error rate. I got this by looking through glyphs and counting how often my guess of the letter didn't match it's unicode value in the font file.

    Enjoy!

  12. T

    cats_vs_dogs

    • tensorflow.org
    • universe.roboflow.com
    • +1more
    Updated Dec 19, 2023
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    (2023). cats_vs_dogs [Dataset]. https://www.tensorflow.org/datasets/catalog/cats_vs_dogs
    Explore at:
    Dataset updated
    Dec 19, 2023
    Description

    A large set of images of cats and dogs. There are 1738 corrupted images that are dropped.

    To use this dataset:

    import tensorflow_datasets as tfds
    
    ds = tfds.load('cats_vs_dogs', split='train')
    for ex in ds.take(4):
     print(ex)
    

    See the guide for more informations on tensorflow_datasets.

    https://storage.googleapis.com/tfds-data/visualization/fig/cats_vs_dogs-4.0.1.png" alt="Visualization" width="500px">

  13. MNIST_pytorch_tensorflow

    • kaggle.com
    zip
    Updated Apr 17, 2022
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    DanielTxz (2022). MNIST_pytorch_tensorflow [Dataset]. https://www.kaggle.com/datasets/danieltxz/mnist-pytorch-tensorflow
    Explore at:
    zip(13313 bytes)Available download formats
    Dataset updated
    Apr 17, 2022
    Authors
    DanielTxz
    Description

    Dataset

    This dataset was created by DanielTxz

    Contents

  14. Dice Images

    • kaggle.com
    zip
    Updated Jan 9, 2022
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    Yash Srivastava (2022). Dice Images [Dataset]. https://www.kaggle.com/datasets/yashsrivastava51213/dice-images
    Explore at:
    zip(1317193 bytes)Available download formats
    Dataset updated
    Jan 9, 2022
    Authors
    Yash Srivastava
    License

    https://creativecommons.org/publicdomain/zero/1.0/https://creativecommons.org/publicdomain/zero/1.0/

    Description

    Context

    There is no story behind this dataset, I just felt that I should also have a dataset 😬 .

    About the Dataset.

    The dataset contains top view of dice digits which can be used as an alternative to the MNIST dataset for digit recognition, a benchmark dataset for classification.

    The images currently are only 120 and attempts to augment the data have already been made through the Tensorflow data augmentation pipeline, which further increased the dataset to about 1600 images(with random rotations, crops amongst other operations)

    Image Type and Nomenclature

    For the small dataset that we have here, the images were made from just two dice. The images of the dice are resized to be similar to that of the MNIST dataset for testing results on the already present models.

    The images currently in the dataset are named as follows: {number}_{color of the dice**}_{transform angle}_{transformation direction*}

    Expectation

    My aim is that the dataset should be big enough so as to not cause overfitting. The dataset should also be diverse enough so that the model for which it is used is accurate.

    Albeit augmentation of the dataset is a way to increase the dataset size, original images are preferred for their variability amongst many variables that I might have neglected in my analysis.

    *if the direction is necessary, it is mentioned
    ** Although the images are converted to grayscale, the color of the dice might be feature that is required for some other analysis.

    Acknowledgements

    There is no one particularly that comes to mind, because each and every picture in this small dataset was manually edited by me, although I would like to help

    Inspiration

    The question that I have is whether this dataset can be used for Image Classification ? My take on this problem : GitHub Implementation

  15. notMNIST

    • kaggle.com
    • opendatalab.com
    • +2more
    zip
    Updated Mar 31, 2019
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    Sani Kamal (2019). notMNIST [Dataset]. https://www.kaggle.com/sanikamal/notmnist
    Explore at:
    zip(635933516 bytes)Available download formats
    Dataset updated
    Mar 31, 2019
    Authors
    Sani Kamal
    Description

    Context

    notMNIST dataset is created from some publicly available fonts and extracted glyphs from them to make a dataset similar to MNIST. There are 10 classes, with letters A-J taken from different fonts.

    Judging by the examples, one would expect this to be a harder task than MNIST. This seems to be the case -- logistic regression on top of stacked auto-encoder with fine-tuning gets about 89% accuracy whereas same approach gives got 98% on MNIST. Dataset consists of small hand-cleaned part, about 19k instances, and large uncleaned dataset, 500k instances. Two parts have approximately 0.5% and 6.5% label error rate. Got this by looking through glyphs and counting how often my guess of the letter didn't match it's unicode value in the font file.

    This dataset is used extensively in the Udacity Deep Learning course, and is available in the Tensorflow Github repo (under Examples). I'm not aware of any license governing the use of this data, so I'm posting it here so that the community can use it with Kaggle kernels.

    Content

    notMNIST _large is a large but dirty version of the dataset with 529,119 images, and notMNIST_small is a small hand-cleaned version of the dataset, with 18726 images. The dataset was assembled by Yaroslav Bulatov, and can be obtained on his blog.

    The two files each containing 28x28 grayscale images of letters A - J, organized into directories by letter. notMNIST_large contains 529,119 images and notMNIST_small contains 18726 images.

    Acknowledgements

    Thanks to Yaroslav Bulatov for putting together the dataset. http://yaroslavvb.blogspot.com/2011/09/notmnist-dataset.html

  16. Deep Learning Lab (SB_064)

    • kaggle.com
    zip
    Updated Jun 27, 2025
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    Laiba Rafiq (2025). Deep Learning Lab (SB_064) [Dataset]. https://www.kaggle.com/datasets/laibarafiq101/deep-learning-lab-sb-064
    Explore at:
    zip(4575587 bytes)Available download formats
    Dataset updated
    Jun 27, 2025
    Authors
    Laiba Rafiq
    License

    Attribution-NonCommercial-ShareAlike 4.0 (CC BY-NC-SA 4.0)https://creativecommons.org/licenses/by-nc-sa/4.0/
    License information was derived automatically

    Description

    Deep Learning Lab (Sec-B-064) - Dataset

    This dataset contains practical lab tasks for the Deep Learning Lab course, focusing on key deep learning concepts using NumPy, TensorFlow, Scikit-learn, and Matplotlib.

    Dataset Structure

    • Lab1/ - Overview of TensorFlow and Its Operations.
    • Lab2/ - Implementation of Activation Functions.
    • Lab3/ - Implementation of Linear Regression Using Scikit-Learn.
    • Lab4/ - Implementation of Single Layer Perceptron with Optimizer.
    • Lab5/ - Implementing Multi-Layer Neural Network Using Keras.
    • Lab6/ - Housing Price Prediction Using Keras.
    • Lab7/ - Open Ended Lab.
    • Lab8/ - Classifications Using Neural Networks.
    • Lab9/ - Introduction to Image Processing.
    • Lab10/ - MNIST Digit Classification with CNN.
    • Lab11/ - Understanding Recurrent Neural Networks (RNNs).
    • Lab12/ - Overfitting vs Underfitting Visualization with Synthesized Dataset.
    • Lab13/ - Introduction to GANs using CelebA Dataset (PNG Images).
    • Lab14/ - Open Ended Lab.
    • Additional lab folders will be added as the course progresses.

    Purpose

    This dataset purpose to experiment with deep learning frameworks and improve understanding of computational operations using real-world code examples.

    How to Use

    1. Connect the dataset to a Kaggle Notebook.
    2. Navigate to the Lab1/ folder to access the Jupyter Notebook.
    3. Run the notebook to explore tensor operations and NumPy computations.
  17. Not seeing a result you expected?
    Learn how you can add new datasets to our index.

Share
FacebookFacebook
TwitterTwitter
Email
Click to copy link
Link copied
Close
Cite
(2024). mnist [Dataset]. https://www.tensorflow.org/datasets/catalog/mnist

mnist

Explore at:
89 scholarly articles cite this dataset (View in Google Scholar)
Dataset updated
Jun 1, 2024
Description

The MNIST database of handwritten digits.

To use this dataset:

import tensorflow_datasets as tfds

ds = tfds.load('mnist', split='train')
for ex in ds.take(4):
 print(ex)

See the guide for more informations on tensorflow_datasets.

https://storage.googleapis.com/tfds-data/visualization/fig/mnist-3.0.1.png" alt="Visualization" width="500px">

Search
Clear search
Close search
Google apps
Main menu