Unofficial PyTorch implementation of Faster Projected GAN.
2
stars
124
commits
Python
primary language
Sep 9, 2026
updated
Unofficial PyTorch implementation of Faster Projected GAN introduced in the paper Faster Projected GAN: Towards Faster Few-Shot Image Generation.
Results on the AnimalFace-cat dataset (160 images, provided by FastGAN authors) after training for less than 237 kimg:
A deep learning model designed for few-shot image generation. It trains rapidly and yields high-quality images, even with a limited dataset (e.g., fewer than 100 samples).
Clone repo
git clone https://github.com/diarimandimby/Faster-Projected-GAN/
cd Faster-Projected-GAN
Install requirements
pip install -r requirements.txt
You can easily import and initialize the generator and discriminator in your own Python scripts:
from generator import FasterProjectedGANGenerator
from discriminator import ProjectedGANDiscriminator
# Initialize models
G = FasterProjectedGANGenerator()
D = ProjectedGANDiscriminator()
If you want to use the model without installing anything locally, you can also try our Colab notebook.
@misc{liu2021fasterstabilizedgantraining,
title={Towards Faster and Stabilized GAN Training for High-fidelity Few-shot Image Synthesis},
author={Bingchen Liu and Yizhe Zhu and Kunpeng Song and Ahmed Elgammal},
year={2021},
eprint={2101.04775},
archivePrefix={arXiv},
primaryClass={cs.CV},
url={https://arxiv.org/abs/2101.04775},
}
@InProceedings{Sauer2021NEURIPS,
author = {Axel Sauer and Kashyap Chitta and Jens M{\"{u}}ller and Andreas Geiger},
title = {Projected GANs Converge Faster},
booktitle = {Advances in Neural Information Processing Systems (NeurIPS)},
year = {2021},
}
@misc{wang2024fasterprojectedganfaster,
title = {Faster Projected GAN: Towards Faster Few-Shot Image Generation},
author = {Chuang Wang and Zhengping Li and Yuwen Hao and Lijun Wang and Xiaoxue Li},
year = {2024},
eprint = {2403.08778},
archivePrefix = {arXiv},
primaryClass = {cs.CV},
url = {https://arxiv.org/abs/2403.08778},
}
Contributions are welcome! If you want to improve this implementation, fix a bug, or add new features, feel free to open an issue or submit a pull request.
If this repo is helpful, please help to ⭐ it or recommend it to your friends 😊.
124 commits
Python
100.0%
Unofficial PyTorch implementation of Faster Projected GAN.
2
stars
124
commits
Python
primary language
Sep 9, 2026
updated
Unofficial PyTorch implementation of Faster Projected GAN introduced in the paper Faster Projected GAN: Towards Faster Few-Shot Image Generation.
Results on the AnimalFace-cat dataset (160 images, provided by FastGAN authors) after training for less than 237 kimg:
A deep learning model designed for few-shot image generation. It trains rapidly and yields high-quality images, even with a limited dataset (e.g., fewer than 100 samples).
Clone repo
git clone https://github.com/diarimandimby/Faster-Projected-GAN/
cd Faster-Projected-GAN
Install requirements
pip install -r requirements.txt
You can easily import and initialize the generator and discriminator in your own Python scripts:
from generator import FasterProjectedGANGenerator
from discriminator import ProjectedGANDiscriminator
# Initialize models
G = FasterProjectedGANGenerator()
D = ProjectedGANDiscriminator()
If you want to use the model without installing anything locally, you can also try our Colab notebook.
@misc{liu2021fasterstabilizedgantraining,
title={Towards Faster and Stabilized GAN Training for High-fidelity Few-shot Image Synthesis},
author={Bingchen Liu and Yizhe Zhu and Kunpeng Song and Ahmed Elgammal},
year={2021},
eprint={2101.04775},
archivePrefix={arXiv},
primaryClass={cs.CV},
url={https://arxiv.org/abs/2101.04775},
}
@InProceedings{Sauer2021NEURIPS,
author = {Axel Sauer and Kashyap Chitta and Jens M{\"{u}}ller and Andreas Geiger},
title = {Projected GANs Converge Faster},
booktitle = {Advances in Neural Information Processing Systems (NeurIPS)},
year = {2021},
}
@misc{wang2024fasterprojectedganfaster,
title = {Faster Projected GAN: Towards Faster Few-Shot Image Generation},
author = {Chuang Wang and Zhengping Li and Yuwen Hao and Lijun Wang and Xiaoxue Li},
year = {2024},
eprint = {2403.08778},
archivePrefix = {arXiv},
primaryClass = {cs.CV},
url = {https://arxiv.org/abs/2403.08778},
}
Contributions are welcome! If you want to improve this implementation, fix a bug, or add new features, feel free to open an issue or submit a pull request.
If this repo is helpful, please help to ⭐ it or recommend it to your friends 😊.
124 commits
Python
100.0%