famousdetectiveadrianmonk
commited on
Update README.md
Browse files
README.md
CHANGED
@@ -15,13 +15,35 @@ dataset_info:
|
|
15 |
dtype: image
|
16 |
splits:
|
17 |
- name: train
|
18 |
-
num_bytes: 1247799628
|
19 |
num_examples: 1000
|
20 |
download_size: 1247643448
|
21 |
-
dataset_size: 1247799628
|
22 |
configs:
|
23 |
- config_name: default
|
24 |
data_files:
|
25 |
- split: train
|
26 |
path: data/train-*
|
|
|
27 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
15 |
dtype: image
|
16 |
splits:
|
17 |
- name: train
|
18 |
+
num_bytes: 1247799628
|
19 |
num_examples: 1000
|
20 |
download_size: 1247643448
|
21 |
+
dataset_size: 1247799628
|
22 |
configs:
|
23 |
- config_name: default
|
24 |
data_files:
|
25 |
- split: train
|
26 |
path: data/train-*
|
27 |
+
pretty_name: ㅇㄹ
|
28 |
---
|
29 |
+
|
30 |
+
## Description
|
31 |
+
This dataset is an enhanced version of the original dataset provided by [https://huggingface.co/fusing](https://huggingface.co/fusing). The original dataset, [https://huggingface.co/datasets/fusing/instructpix2pix-1000-samples](https://huggingface.co/datasets/fusing/instructpix2pix-1000-samples), consisted of input images and edit prompts designed to generate edited images.
|
32 |
+
|
33 |
+
In this custom dataset, we have added additional fields and data transformations to facilitate advanced image editing tasks. Specifically, the dataset now includes:
|
34 |
+
|
35 |
+
- **input_caption**: Captions generated using a vision-language model (VLM) from the input images.
|
36 |
+
- **edited_prompt**: Prompts generated using a large language model (LLM) by combining the input captions with the original edit prompts.
|
37 |
+
- **new_edited_image**: Images generated using a ControlNet img2img model by applying the edited prompts to the input images.
|
38 |
+
|
39 |
+
The transformations provide a robust framework for tasks such as image captioning, prompt-based image editing, and comparing different image editing models.
|
40 |
+
|
41 |
+
## Changes Made
|
42 |
+
- Added **input_caption** field generated with a vision-language model (VLM).
|
43 |
+
- Added **edited_prompt** generated from a large language model (LLM) using the **input_caption** and **edit_prompt**.
|
44 |
+
- Added **new_edited_image** generated from a ControlNet img2img model using the **input_image** and **edited_prompt**.
|
45 |
+
|
46 |
+
## Attribution
|
47 |
+
This dataset is based on the original dataset provided by [https://huggingface.co/fusing](https://huggingface.co/fusing). The original dataset can be found at [https://huggingface.co/datasets/fusing/instructpix2pix-1000-samples](https://huggingface.co/datasets/fusing/instructpix2pix-1000-samples).
|
48 |
+
|
49 |
+
|