For GANs (Generative Adversarial Networks) that create images, we want to know how real or good the generated images look. Common metrics include:
- Inception Score (IS): Measures if generated images are clear and diverse by using a pre-trained image classifier.
- Fréchet Inception Distance (FID): Compares statistics of real and generated images to see how close they are.
- Precision and Recall for GANs: Precision checks if generated images are realistic, recall checks if the GAN creates diverse images covering the real data variety.
These metrics help us understand if the GAN is making images that look real and varied, which is the goal.