search
HomeBackend DevelopmentPython TutorialDatasets for Computer Vision (1)

Buy Me a Coffee☕

(1) MNIST(Modified National Institute of Standards and Technology)(1998):

  • has the 70,000 handwritten digits[0~9] by 28x28 pixels each. *60,000 for train and 10,000 for test.
  • is MNIST() in PyTorch.

Datasets for Computer Vision (1)

(2) EMNIST(Extended MNIST)(2017):

  • has the handwritten characters(digits[0~9] and alphabet letters[A~Z][a~z]) by 28x28 pixels each, splitted into 6 datasets(ByClass, ByMerge, Balanced, Letters, Digits and MNIST): *Memos:
    • ByClass has 814,255 characters(digits[0~9] and alphabet letters[A~Z][a~z]). *697,932 for train and 116,323 for test.
    • ByMerge has 814,255 characters(digits[0~9] and alphabet letters[A~Z][a, b, d~h, n, q, r, t]). *697,932 for train and 116,323 for test.
    • Balanced has 131,600 characters(digits[0~9] and alphabet letters[A~Z][a, b, d~h, n, q, r, t]). *112,800 for train and 18,800 for test.
    • Letters has 145,600 alphabet letters[a~z]. *124,800 for train and 20,800 for test.
    • Digits has 280,000 digits[0~9]. *240,000 for train and 40,000 for test.
    • MNIST has 70,000 digits[0~9]. *60,000 for train and 10,000 for test.
  • is EMNIST() in PyTorch.

Datasets for Computer Vision (1)

(3) QMNIST(2019):

  • has 120,000 handwritten digits[0~9] by 28x28 pixels each. *60,000 for train and 60,000 for test.
  • is an extended MNIST. *I don't know what Q of QMNIST means.
  • is QMNIST() in PyTorch.

Datasets for Computer Vision (1)

(4) ETLCDB(Extract-Transform-Load Character Database)(2011):

  • has the handwritten or machine-printed numerals, symbols, alphabet letters and Japanese characters split into 9 datasets(ETL-1, ETL-2, ETL-3 , ETL-4, ETL-5, ETL-6, ETL-7, ETL-8 and ETL-9) : : : : : : : : : : : : : : : : : : : : : : *Memos:
    • ETL1 has 141,319 characters (digits[0~9], alphabet letters[A~Z], symbols[-*/=()・,?'] and Katakana[ア~ン]).
    • ETL2 has 52,796 characters(digits[0~9], alphabet letters[A~Z], symbols, Katakana letters[ア~ン], Hiragana letters[あ~ん] and Kanji letters).
    • ETL3 has 9,600 characters(digits[0~9], alphabet letters[A~Z] and symbols[¥ -*/=()・,_▾]).
    • ETL4 has 6,120 letters[あ~ん].
    • ETL5 has 10,608 Katakana letters[ア~ン].
    • ETL6 has 52,796 characters (digits[0~9], alphabet letters[A~Z][a~z], symbols and Katakana letters[ア~ン]).
    • ETL7(ETL7L and ETL7S) has 16,800 characters
    • ETL8(ETL8G and ETL8B2) has 152,960 characters
    • ETL9(ETL9G and ETL9B)
    • has 607,200 characters
    • It's not in PyTorch so we need to download it from etlcdb.

(5) Kuzushiji(2018):Datasets for Computer Vision (1)

The cursive style of Japanese characters is split into 3 datasets(

Kuzushiji-MNIST
    ,
  • Kuzushiji-49 and Kuzushiji-Kanji): *Memos: Kuzushiji-MNIST
      has 28x28 pixels resolution
    • Kuzushiji-49 has 28x28 pixels each.
    • Kuzushiji-49
    • Kuzushiji-Kanji
    • has the imbalanced 140,424 Kanji characters by 64x64 pixels each.
    • KMNIST() is in PyTorch but it only has
    Kuzushiji-MNIST
  • 🎜>
  • (6) Moving MNIST(2015):
  • has 10,000 videos by 64x64 pixels each. *Each video has 20 frames with 2 moving digits.

MovingMNIST() is in PyTorch.Datasets for Computer Vision (1)

    Datasets for Computer Vision (1)

    Datasets for Computer Vision (1)

    Datasets for Computer Vision (1)

    Datasets for Computer Vision (1)

The above is the detailed content of Datasets for Computer Vision (1). For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Python: compiler or Interpreter?Python: compiler or Interpreter?May 13, 2025 am 12:10 AM

Python is an interpreted language, but it also includes the compilation process. 1) Python code is first compiled into bytecode. 2) Bytecode is interpreted and executed by Python virtual machine. 3) This hybrid mechanism makes Python both flexible and efficient, but not as fast as a fully compiled language.

Python For Loop vs While Loop: When to Use Which?Python For Loop vs While Loop: When to Use Which?May 13, 2025 am 12:07 AM

Useaforloopwheniteratingoverasequenceorforaspecificnumberoftimes;useawhileloopwhencontinuinguntilaconditionismet.Forloopsareidealforknownsequences,whilewhileloopssuitsituationswithundeterminediterations.

Python loops: The most common errorsPython loops: The most common errorsMay 13, 2025 am 12:07 AM

Pythonloopscanleadtoerrorslikeinfiniteloops,modifyinglistsduringiteration,off-by-oneerrors,zero-indexingissues,andnestedloopinefficiencies.Toavoidthese:1)Use'i

For loop and while loop in Python: What are the advantages of each?For loop and while loop in Python: What are the advantages of each?May 13, 2025 am 12:01 AM

Forloopsareadvantageousforknowniterationsandsequences,offeringsimplicityandreadability;whileloopsareidealfordynamicconditionsandunknowniterations,providingcontrolovertermination.1)Forloopsareperfectforiteratingoverlists,tuples,orstrings,directlyacces

Python: A Deep Dive into Compilation and InterpretationPython: A Deep Dive into Compilation and InterpretationMay 12, 2025 am 12:14 AM

Pythonusesahybridmodelofcompilationandinterpretation:1)ThePythoninterpretercompilessourcecodeintoplatform-independentbytecode.2)ThePythonVirtualMachine(PVM)thenexecutesthisbytecode,balancingeaseofusewithperformance.

Is Python an interpreted or a compiled language, and why does it matter?Is Python an interpreted or a compiled language, and why does it matter?May 12, 2025 am 12:09 AM

Pythonisbothinterpretedandcompiled.1)It'scompiledtobytecodeforportabilityacrossplatforms.2)Thebytecodeistheninterpreted,allowingfordynamictypingandrapiddevelopment,thoughitmaybeslowerthanfullycompiledlanguages.

For Loop vs While Loop in Python: Key Differences ExplainedFor Loop vs While Loop in Python: Key Differences ExplainedMay 12, 2025 am 12:08 AM

Forloopsareidealwhenyouknowthenumberofiterationsinadvance,whilewhileloopsarebetterforsituationswhereyouneedtoloopuntilaconditionismet.Forloopsaremoreefficientandreadable,suitableforiteratingoversequences,whereaswhileloopsoffermorecontrolandareusefulf

For and While loops: a practical guideFor and While loops: a practical guideMay 12, 2025 am 12:07 AM

Forloopsareusedwhenthenumberofiterationsisknowninadvance,whilewhileloopsareusedwhentheiterationsdependonacondition.1)Forloopsareidealforiteratingoversequenceslikelistsorarrays.2)Whileloopsaresuitableforscenarioswheretheloopcontinuesuntilaspecificcond

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!