murali1729S commited on
Commit
ec9e905
·
verified ·
1 Parent(s): 52eff67
Files changed (1) hide show
  1. README.md +9 -14
README.md CHANGED
@@ -31,17 +31,19 @@ tags:
31
  size_categories:
32
  - 1K<n<10K
33
  ---
34
- # 🖼️ Image Editing Dataset with Prompts
35
 
36
- This dataset contains pairs of images and prompts for training or evaluating image-to-image and text-to-image models.
 
 
37
 
38
  ## 📁 Dataset Structure
39
 
40
  Each sample contains:
41
- - `input_image`: Original image (before editing)
42
- - `edit_prompt`: Text instruction describing the desired edit
43
  - `edited_image`: Resulting image after applying the edit
44
- - `index`: Unique numeric identifier
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("your-username/your-dataset-name")
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
+ ```