Spaces:
Runtime error
Runtime error
Update README.md
Browse files1st time worked on huggingface readme.md
README.md
CHANGED
|
@@ -1,5 +1,5 @@
|
|
| 1 |
---
|
| 2 |
-
title: Peacock
|
| 3 |
emoji: π
|
| 4 |
colorFrom: green
|
| 5 |
colorTo: pink
|
|
@@ -7,7 +7,35 @@ sdk: streamlit
|
|
| 7 |
sdk_version: 1.44.1
|
| 8 |
app_file: app.py
|
| 9 |
pinned: false
|
| 10 |
-
|
| 11 |
---
|
| 12 |
|
| 13 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
+
title: Peacock - AI YouTube Thumbnail Generator
|
| 3 |
emoji: π
|
| 4 |
colorFrom: green
|
| 5 |
colorTo: pink
|
|
|
|
| 7 |
sdk_version: 1.44.1
|
| 8 |
app_file: app.py
|
| 9 |
pinned: false
|
| 10 |
+
license: mit
|
| 11 |
---
|
| 12 |
|
| 13 |
+
# Peacock - AI-Powered YouTube Thumbnail Generator
|
| 14 |
+
|
| 15 |
+
A revolutionary tool for YouTubers that automatically generates stylized, cinematic thumbnails using AI.
|
| 16 |
+
|
| 17 |
+
## π Features
|
| 18 |
+
|
| 19 |
+
- Generates 512x512 high-quality thumbnails
|
| 20 |
+
- Trained on 100+ custom YouTube thumbnails using StyleGAN2-ADA
|
| 21 |
+
- Simple one-click generation
|
| 22 |
+
- Customizable outputs based on your channel's style
|
| 23 |
+
|
| 24 |
+
## π οΈ How It Works
|
| 25 |
+
|
| 26 |
+
The model takes either:
|
| 27 |
+
- A random latent vector OR
|
| 28 |
+
- A conditioned input vector
|
| 29 |
+
|
| 30 |
+
And outputs a professional-grade YouTube thumbnail image.
|
| 31 |
+
|
| 32 |
+
## π» Usage
|
| 33 |
+
|
| 34 |
+
```python
|
| 35 |
+
from thumbnail_generator import ThumbnailGenerator
|
| 36 |
+
|
| 37 |
+
# Load the pre-trained model
|
| 38 |
+
model = ThumbnailGenerator("pytorch_model.bin")
|
| 39 |
+
|
| 40 |
+
# Generate a thumbnail
|
| 41 |
+
image = model.generate()
|