Pokemon Image Dataset
Pokemon image dataset
@kaggle.vishalsubbiah_pokemon_images_and_types
Pokemon image dataset
@kaggle.vishalsubbiah_pokemon_images_and_types
Images of all Pokemon from generation 1 to generation 7, along with their types (primary and secondary) as a csv.
New evolution forms from two different Pokemon. (Create new Pokemon)
Predict Pokemon primary and secondary types from the images. Identify what types the evolution form will have based on the pre-evolved forms. Eg. from Pichu and Pikachu predict for Raichu.
Merge with other information such as moves, generation, strong/weak against etc, and use the images to classify.
data scrapped from https://pokemondb.net/pokedex/national
cover image from https://www.hjackets.com/blog/pikachu-costume-for-kids-and-adult/
CREATE TABLE pokemon (
"name" VARCHAR,
"type1" VARCHAR,
"type2" VARCHAR,
"evolution" VARCHAR
);Anyone who has the link will be able to view this.