updation
Browse files
README.md
CHANGED
|
@@ -31,17 +31,19 @@ tags:
|
|
| 31 |
size_categories:
|
| 32 |
- 1K<n<10K
|
| 33 |
---
|
| 34 |
-
# 🖼️
|
| 35 |
|
| 36 |
-
This dataset
|
|
|
|
|
|
|
| 37 |
|
| 38 |
## 📁 Dataset Structure
|
| 39 |
|
| 40 |
Each sample contains:
|
| 41 |
-
- `input_image`: Original image
|
| 42 |
-
- `edit_prompt`: Text instruction describing the desired
|
| 43 |
- `edited_image`: Resulting image after applying the edit
|
| 44 |
-
- `index`:
|
| 45 |
|
| 46 |
## 🚀 How to Use
|
| 47 |
|
|
@@ -49,12 +51,5 @@ Each sample contains:
|
|
| 49 |
from datasets import load_dataset
|
| 50 |
|
| 51 |
# Replace with your dataset path
|
| 52 |
-
dataset = load_dataset("
|
| 53 |
-
|
| 54 |
-
# Access a sample
|
| 55 |
-
sample = dataset["train"][0]
|
| 56 |
-
print(sample["edit_prompt"])
|
| 57 |
-
|
| 58 |
-
# Show the input image
|
| 59 |
-
input_image = sample["input_image"]
|
| 60 |
-
input_image.show()
|
|
|
|
| 31 |
size_categories:
|
| 32 |
- 1K<n<10K
|
| 33 |
---
|
| 34 |
+
# 🖼️ Portrait to Anime Style Tranfer Data
|
| 35 |
|
| 36 |
+
This dataset consists of paired human and corresponding anime-style images, accompanied by descriptive prompts. The human images are sourced from the CelebA dataset, and the anime-style counterparts were generated using a combination of state-of-the-art GAN architectures and diffusion models.
|
| 37 |
+
|
| 38 |
+
It is designed to support a wide range of tasks, **including GAN research**, **diffusion model fine-tuning**, **model evaluation**, and **benchmarking for image-to-image and text-to-image translation**.
|
| 39 |
|
| 40 |
## 📁 Dataset Structure
|
| 41 |
|
| 42 |
Each sample contains:
|
| 43 |
+
- `input_image`: Original image
|
| 44 |
+
- `edit_prompt`: Text instruction describing the desired style
|
| 45 |
- `edited_image`: Resulting image after applying the edit
|
| 46 |
+
- `index`: default integer with 0 value
|
| 47 |
|
| 48 |
## 🚀 How to Use
|
| 49 |
|
|
|
|
| 51 |
from datasets import load_dataset
|
| 52 |
|
| 53 |
# Replace with your dataset path
|
| 54 |
+
dataset = load_dataset("murali1729S/portrait_2_avatar",split="train")
|
| 55 |
+
```
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|