Pokemon
Datasets
All datasets matching “Pokemon”pokemon-blip-captions
Notice of DMCA Takedown Action
We have received a DMCA takedown notice from The Pokémon Company International, Inc.
In response to this action, we have taken down the dataset.
We appreciate your understanding.
pokemon-showdown-replays
Pokémon Showdown Replay Datasets
Multiple datasets of Pokémon Showdown public replays pulled using the Pokémon Showdown API. Publishing them here to provide them to the community as a starting point for future projects.
These datasets are used in Showdown Shower, an university project of mine.
The dates of the replays range from 2005 to 2026.
Currently (as of 17th September, 2026), this is the number of replays available in each dataset. The number may be lower than the one… See the full description on the dataset page: https://huggingface.co/datasets/HolidayOugi/pokemon-showdown-replays.Pokemon
Pokemon Dataset
This dataset contains a text representation of more that 10k pokemon sprites from different pokemon videogames (red, yellow, gold, ruby,...). The original images are from 40 to 96 pixel of size and every pixel is represented with an ASCII character depending to its color.
Supported Tasks
Text Generation
Languages
ASCII colo representation
Data Fields
{'pokemon': pokemon sprite in ASCII representation
'game': videogame in witch… See the full description on the dataset page: https://huggingface.co/datasets/DelgadoPanadero/Pokemon.PokemonGameBoy-pokemon_brownpokemon-gpt4-captions
Dataset Card for "pokemon-gpt4-captions"
This dataset is just lambdalabs/pokemon-blip-captions but the captions come from GPT-4 (Turbo).
Code used to generate the captions:
import base64
from io import BytesIO
import requests
from PIL import Image
def encode_image(image):
buffered = BytesIO()
image.save(buffered, format="JPEG")
img_str = base64.b64encode(buffered.getvalue())
returnimg_str.decode("utf-8")
def create_payload(image_string):
payload = {… See the full description on the dataset page: https://huggingface.co/datasets/diffusers/pokemon-gpt4-captions.
