Datasets:
Dataset Viewer
image
imagewidth (px) 640
640
| name
stringlengths 2
10
| dex_number
stringlengths 3
3
|
|---|---|---|
abra
|
063
|
|
aerodactyl
|
142
|
|
alakazam
|
065
|
|
arbok
|
024
|
|
arcanine
|
059
|
|
bellsprout
|
069
|
|
bulbasaur
|
001
|
|
butterfree
|
012
|
|
caterpie
|
010
|
|
charmander
|
004
|
|
clefairy
|
035
|
|
cloyster
|
091
|
|
cubone
|
104
|
|
diglett
|
050
|
|
ditto
|
132
|
|
eevee
|
133
|
|
exeggcute
|
102
|
|
farfetchd
|
083
|
|
fearow
|
022
|
|
gastly
|
092
|
|
gengar
|
094
|
|
geodude
|
074
|
|
gloom
|
044
|
|
growlithe
|
058
|
|
haunter
|
093
|
|
hitmonchan
|
107
|
|
horsea
|
116
|
|
ivysaur
|
002
|
|
jigglypuff
|
039
|
|
jynx
|
124
|
|
kabutops
|
141
|
|
kangaskhan
|
115
|
|
koffing
|
109
|
|
krabby
|
098
|
|
magikarp
|
129
|
|
magmar
|
126
|
|
magnemite
|
081
|
|
metapod
|
011
|
|
moltres
|
146
|
|
mr
|
122
|
|
nidoran♂
|
032
|
|
onix
|
095
|
|
paras
|
046
|
|
pidgeotto
|
017
|
|
pikachu
|
025
|
|
ponyta
|
077
|
|
primeape
|
057
|
|
psyduck
|
054
|
|
raichu
|
026
|
|
raticate
|
020
|
|
sandshrew
|
027
|
|
scyther
|
123
|
|
seaking
|
119
|
|
seel
|
086
|
|
slowbro
|
080
|
|
snorlax
|
143
|
|
squirtle
|
007
|
|
venonat
|
048
|
|
vileplume
|
045
|
|
vulpix
|
037
|
|
wartortle
|
008
|
PokeShadowBench
GitHub Repo
https://github.com/freddiev4/pokeshadowbench
Dataset Summary
This dataset contains silhouette images from the "Who's That Pokémon?" segments from the Pokémon anime series. Each entry includes:
- A silhouette image of a Pokémon
- The Pokédex number
- The name of the Pokémon
The dataset is focused on the Indigo League, and includes 61 Pokemon.
Usage
from datasets import load_dataset
# Load the dataset
dataset = load_dataset("freddie/pokeshadowbench")
# Access images and metadata
test_dataset = dataset["test"]
# Get a specific Pokemon's images
bulbasaur = test_dataset.filter(lambda x: x["name"] == "bulbasaur")
Dataset Structure
The dataset is organized in the following structure:
test/
├── bulbasaur/
│ └── 001-bulbasaur.png
├── ivysaur/
│ └── 002-ivysaur.png
...
Each Pokémon has its own directory containing its silhouette image, along with a metadata.jsonl file containing Pokémon information.
Data Fields
Each entry in metadata.jsonl contains:
file_name: Path to the image filename: Name of the Pokémondex_number: Pokédex number of the Pokémon
Supported Tasks
- Image Classification: Identify Pokémon from their silhouettes
- Pokémon Recognition: Match silhouettes with their corresponding Pokémon names and numbers
Source Data
The images are sourced from the "Who's That Pokémon?" segments in the Pokémon anime series. Each image is:
- Screenshotted from the anime
- Cropped to focus on the Pokémon
- Named according to the format:
XXX-name.pngwhere:- XXX is the Pokédex number
- name is the Pokémon name
- Source: https://pocketmonsters.net/segments
Licensing Information
This dataset is released under the Apache 2.0 license.
Citation Information
@misc{who-that-pokemon,
author = {Freddie Vargus},
title = {PokeShadowBench},
year = {2025},
publisher = {Hugging Face},
journal = {Hugging Face Hub},
howpublished = {\url{https://huggingface.co/datasets/freddie/pokeshadowbench}}
}
- Downloads last month
- 82