Pokemon-generator

Using Generative Adversarial Networks to generate Pokemon

Growing up, I really enjoyed everything about Pokemon. I remember that I was around 11 when my parents bought me my first Pokemon game, Pokemon Ruby. The first Pokemon I chose was the grass-type, Treecko, and then at the second gym I regretted my decision and restarted the game to play with the water-type Mudkip (because I loved the swimming pool, so it made sense to me as a kid to only have water-type Pokemon).

I was never a good player competitive player (yeah, I very often loose, haha!), but one thing I really really like is the design element Pokemon has. As a child, I was very amused by the fact that a Pokemon could be based on a pitcher plant (victreebel) or a psychic duck that is not actually psychic (golduck). So, honouring my childhood and my career as a data scientist, I thought it would be a great idea to start a project using Generative Adversarial Networks (or also known as GANs) to generate new Pokemon. So let’s begin!

GANs

The first thing I wanted to touch on is Generative Adversarial Models. Briefly speaking, a Generative Adversarial Network is a machine learning framework in which 2 Neural Networks are adversaries (as the name indicates). And why are they opponents?, you may ask. Basically, one of the networks is in charge of generating new or ‘fake’ images and the other one is in charge of evaluating whether the images are ‘fake’ or not. The first network is called the generator and the second is called the discriminator. The whole point of the framework is building a generator that could generate ‘fake’ images in a way in which the discriminator would not be able to detect that image is ‘fake’.

Or in the words of Tensorflow GANs

If you want to learn more (and see where the image was taken from), please go to this link. It’s tensorflow’s tutorial on GANs.

Pokemon data

Well, for those of you who don’t know what a Pokemon is here is sample of the images I used

Pokemon_sample

Please, play a Pokemon game. Also, this data contains almost 900 Pokemon from the first 8 generations and it was scrapped from pokemon.com. I did not upload the images to the repo.

The work

Just briefly, using the link above, I created a GAN with the images in ‘RGBA’ mode. I resized the images to 80x80 so that they were easier to handle. In addition, I trained the model for 700 epochs using google colab.

Additionally, Neural Networks are a complex net of matrix multiplications and activations functions that requires several steps to reduce their loss. These steps are known as epochs and, in this case, through the epochs we expect the generator to become better and better at fooling the discriminator. Here are some epochs of the generation proccess:

First Epoch

Nothing here, this is a good start haha.

250th Epoch

Here it is starting to create shapes.

500th Epoch

By epoch 500, colours are being added to the Pokemon (thought it is only orange and blue)

700th Epoch

The one on the right looks like Butterfree but not as clear.

As you can see, the networks starts with nothing but a grey frame and starts to develop shapes and colors that are similar to those of the real Pokemon. However, I believe there is still a lot of room for improvement, the images are still not as clear to be called a Pokemon. Maybe, trying to change the architecture could help (also, I would be interested to know if there is any pretrained NN that involves Pokemon). Or adding different images of the same Pokemon (different artworks, rotated images, and so on). Nonetheless, I see that there are interesting shapes that are starting to be created, the gif looks really artsy and I am enjoying watching it. Maybe running it for more epochs could help too.

Overall, I am really liking this project so I think I will keep on improving it. If you are insterested in the code, here is the link to the repo.

Stay tuned for more work!

Written on May 23, 2020