--- license: cc-by-nc-sa-4.0 task_categories: - image-classification language: - en tags: - pokemon - videogames - image pretty_name: Pokemon Classification Gen 1 - 9 size_categories: - 10K This dataset is designed for classifying Pokémon based on their images. All images are 256px x 256px and have metadata detailing each Pokémon's generation, types, and key statistics such as HP, Attack, Defense, Special Attack, Special Defense, and Speed. Additionally, the dataset features labeled images of shiny versions of Pokémon, providing a comprehensive resource for image-based classification tasks. ## Dataset Details ### Dataset Sources All images came from bulbapedia.bulbagarden.net. All pokemon are owned by the Pokemon Company and Nintendo. ## Dataset Structure The columns include - file_name - image - label (i.e pokedex entry) - name - generation - Type 1 - Type 2 (if applicable) - HP - Attack - Defence - Sp Attack - Sp Defence - Speed - Shiny (Yes or no based on if the image is the shiny version) ## How to Use - Install datasets: `pip install datasets` - Load the dataset: ``` from datasets import load_dataset ds = load_dataset("JJMack/pokemon-classification-gen1-9") example = ds['train'][0] ```