nhatttanbui commited on
Commit
e89c90f
·
verified ·
1 Parent(s): 07e4131

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +71 -31
README.md CHANGED
@@ -1,31 +1,71 @@
1
- ---
2
- license: cc-by-4.0
3
- dataset_info:
4
- features:
5
- - name: COCO
6
- dtype: image
7
- - name: T_original
8
- dtype: string
9
- - name: T_generated
10
- dtype: string
11
- - name: T_negative
12
- dtype: string
13
- - name: NeIn
14
- dtype: image
15
- splits:
16
- - name: train
17
- num_bytes: 71681524914.3
18
- num_examples: 342775
19
- - name: validation
20
- num_bytes: 4945769234.918
21
- num_examples: 24182
22
- download_size: 36634351590
23
- dataset_size: 76627294149.218
24
- configs:
25
- - config_name: default
26
- data_files:
27
- - split: train
28
- path: data/train-*
29
- - split: validation
30
- path: data/validation-*
31
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-4.0
3
+ dataset_info:
4
+ features:
5
+ - name: COCO
6
+ dtype: image
7
+ - name: T_original
8
+ dtype: string
9
+ - name: T_generated
10
+ dtype: string
11
+ - name: T_negative
12
+ dtype: string
13
+ - name: NeIn
14
+ dtype: image
15
+ splits:
16
+ - name: train
17
+ num_bytes: 71681524914.3
18
+ num_examples: 342775
19
+ - name: validation
20
+ num_bytes: 4945769234.918
21
+ num_examples: 24182
22
+ download_size: 36634351590
23
+ dataset_size: 76627294149.218
24
+ configs:
25
+ - config_name: default
26
+ data_files:
27
+ - split: train
28
+ path: data/train-*
29
+ - split: validation
30
+ path: data/validation-*
31
+ task_categories:
32
+ - text-to-image
33
+ - image-to-image
34
+ language:
35
+ - en
36
+ tags:
37
+ - image_editing
38
+ - negation
39
+ - vlm
40
+ pretty_name: NeIn
41
+ size_categories:
42
+ - 100K<n<1M
43
+ ---
44
+
45
+ # NeIn: Telling What You Don’t Want (CVPRW 2025)
46
+
47
+ ### Dataset Description
48
+ - **Homepage:** https://tanbuinhat.github.io/NeIn/
49
+ - **Point of Contact:** [Nhat-Tan Bui](mailto:tanb@uark.edu)
50
+
51
+ ### Dataset Summary
52
+ NeIn is the first large-scale for studying negation in text-guided image editing. It comprises 366,957 quintuplets, i.e., source image, original caption, selected object, negative sentence, and target image in total, including 342,775 queries for training and 24,182 queries for
53
+ benchmarking image editing methods.
54
+
55
+ ### Dataset Structure
56
+ - `COCO` (img): The source image from MS-COCO.
57
+ - `T_original` (str): The original caption from COCO of that image.
58
+ - `T_generated` (str): The addition instruction (e.g., "Add a couch.") for generate NeIn's sample and extract selected object.
59
+ - `T_negative` (str): The negative instruction.
60
+ - `NeIn` (img): The target image for negative instruction.
61
+
62
+ ## Citation
63
+ If you find this dataset useful, please consider citing our paper:
64
+ ```
65
+ @article{bui2024nein,
66
+ author={Bui, Nhat-Tan and Hoang, Dinh-Hieu and Trinh, Quoc-Huy and Tran, Minh-Triet and Nguyen, Truong and Gauch, Susan},
67
+ title={NeIn: Telling What You Don't Want},
68
+ journal={arXiv preprint arXiv:2409.06481},
69
+ year={2024}
70
+ }
71
+ ```