File size: 1,213 Bytes
88125a5 e5cf3ac 81d6b2b 88125a5 7f7ed00 88125a5 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 | ---
license: apache-2.0
---
# Anime Face Generator - DCGAN 🎨✨
This is a **Deep Convolutional Generative Adversarial Network (DCGAN)** trained to generate **anime-style faces**. The model learns patterns from real anime images and creates unique, high-quality anime faces from scratch.
---
## 🖼️ Sample Generated Image

<!-- <img src="https://huggingface.co/VigneshS010/anime_face_generator/smaple.png"> -->
---
## 📌 Model Details
- **Architecture**: Deep Convolutional GAN (DCGAN)
- **Dataset**: 10,000 anime images
- **Framework**: TensorFlow/Keras
- **File Format**: `.h5`
- **Trained On**: GPU (Recommended for inference)
- **Image Size**: 64 x 64
---
## 🚀 How to Use the Model
You can download and load the model in Python using TensorFlow/Keras:
```python
from tensorflow.keras.models import load_model
# Load the model
model = load_model("anime-face-generator.h5")
# Generate new anime faces (example code)
import numpy as np
random_latent_vector = np.random.normal(size=(1, 100)) # Adjust size based on your latent space
generated_image = model.predict(random_latent_vector)
|