--- license: mit --- # Pixel A PyTorch-based Generative Adversarial Network (GAN) for training and generating pixel art images. ## Setup Git clone the pixel repo: ``` git clone https://github.com/mochiyaki/pixel ``` Get inside the cloned folder: ``` cd pixel ``` Start training with your dataset (in ./data/): ``` python trainer.py ``` When finished, check the model file (in ./models/) then run the inference: ``` python generator.py ```