Views
No views yet
1# Clone the repository
2git clone https://github.com/GruheshKurra/GAN_Implementation.git
3cd GAN_Implementation
4
5# Install dependencies
6pip install -r requirements.txtjupyter notebook Gan.ipynbGAN_Implementation/
├── Gan.ipynb # Main implementation notebook
├── requirements.txt # Python dependencies
├── README.md # This file
├── Generative Adversarial Networks (GANs).md # Theory and documentation
├── gan_training.log # Training logs (standard mode)
├── gan_training_lite.log # Training logs (lite mode)
├── generator_lite.pth # Saved model weights
└── data/ # MNIST dataset
└── MNIST/
└── raw/ # Raw MNIST data files| Mode | Training Time | Generator Loss | Discriminator Loss | Quality |
|---|---|---|---|---|
| Standard | ~30 min | ~1.5 | ~0.7 | High |
| Lite | ~5 min | ~2.0 | ~0.6 | Good |
Generative Adversarial Networks (GANs).md