yzwang commited on
Commit
23fd692
·
verified ·
1 Parent(s): f451aa9

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +64 -3
README.md CHANGED
@@ -1,3 +1,64 @@
1
- ---
2
- license: apache-2.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ task_categories:
4
+ - text-to-image
5
+ - image-to-image
6
+ language:
7
+ - en
8
+ size_categories:
9
+ - 100K<n<1M
10
+ ---
11
+
12
+ # X2I Dataset
13
+
14
+ * Project Page: [https://vectorspacelab.github.io/OmniGen/](https://vectorspacelab.github.io/OmniGen/)
15
+ * Github: [https://github.com/VectorSpaceLab/OmniGen](https://github.com/VectorSpaceLab/OmniGen)
16
+ * Paper: [https://arxiv.org/abs/2409.11340](https://arxiv.org/abs/2409.11340)
17
+ * Model: [https://huggingface.co/Shitao/OmniGen-v1](https://huggingface.co/Shitao/OmniGen-v1)
18
+
19
+
20
+ To achieve robust multi-task processing capabilities, it is essential to train the **OmniGen** on large-scale and diverse datasets. However, in the field of unified image generation, a readily available dataset has yet to emerge. For this reason, we have curated a large-scale **unified image generation** dataset with unified format for the **first time**, which we refer to as the **X2I dataset**, meaning **"anything to image"**.
21
+
22
+
23
+ | Task| Datastet|
24
+ | :-------- | :-------- |
25
+ | Multi-modal Instruction| [X2I-mm-instruction](https://huggingface.co/datasets/yzwang/X2I-mm-instruction) |
26
+ | Subject-driven Editing | [X2I-subject-driven](https://huggingface.co/datasets/yzwang/X2I-subject-driven) |
27
+ | In-context Learning | [X2I-in-context-learning](https://huggingface.co/datasets/yzwang/X2I-in-context-learning) |
28
+ | Computer Vision | [X2I-computer-vision](https://huggingface.co/datasets/yzwang/X2I-computer-vision) |
29
+ | Text to Image Generation| [X2I-text-to-image](https://huggingface.co/datasets/yzwang/X2I-text-to-image) |
30
+
31
+
32
+ ## X2I-in-context-learning
33
+
34
+
35
+ - **Derain & Enhance & GoPro**
36
+
37
+ A set of image derain, enhance and deblur datasets with 859 & 485 & 2,103 samples.
38
+
39
+ ```python
40
+ ## meta file: derain.jsonl
41
+ cd derain
42
+ tar -xzvf derain.tar.gz
43
+ ## meta file: enhance.jsonl
44
+ cd enhance
45
+ tar -xzvf enhance.tar.gz
46
+ ## meta file: gopro.jsonl
47
+ cd gopro
48
+ tar -xzvf gopro.tar.gz
49
+ ```
50
+
51
+
52
+ - **ADE**
53
+
54
+ A image segementation dataset with 297,472 samples.
55
+
56
+ download images from [here](https://huggingface.co/datasets/yzwang/X2I-computer-vision/tree/main/ade)
57
+
58
+ ```python
59
+ ## meta file: ade.jsonl
60
+ cd ade
61
+ tar -xzvf ade.tar.gz
62
+ ```
63
+
64
+ - [MultiGen](https://github.com/salesforce/UniControl)