Initial dataset card for MENTOR dataset

#1
by nielsr HF Staff - opened
Files changed (1) hide show
  1. README.md +58 -0
README.md ADDED
@@ -0,0 +1,58 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ task_categories:
3
+ - text-to-image
4
+ tags:
5
+ - multimodal
6
+ - autoregressive
7
+ - image-generation
8
+ license: mit
9
+ ---
10
+
11
+ # MENTOR Dataset
12
+
13
+ This repository contains dataset components used in the paper "[MENTOR: Efficient Multimodal-Conditioned Tuning for Autoregressive Vision Generation Models](https://huggingface.co/papers/2507.09574)".
14
+
15
+ MENTOR (Multimodal-conditioned Tuning for Autoregressive Vision Generation Models) proposes a novel autoregressive (AR) framework designed for efficient multimodal image generation. It combines an AR image generator with a two-stage training paradigm to achieve fine-grained, token-level alignment between multimodal inputs and image outputs.
16
+
17
+ * **Project Page**: [https://haozhezhao.github.io/MENTOR.page](https://haozhezhao.github.io/MENTOR.page)
18
+ * **Code**: [https://github.com/HaozheZhao/MENTOR](https://github.com/HaozheZhao/MENTOR)
19
+
20
+ ## Dataset Components
21
+
22
+ The MENTOR framework relies on a two-stage training process, each utilizing a specific dataset component:
23
+
24
+ 1. **Stage 1: Multimodal Alignment Dataset**: This dataset is used in the first training stage to establish robust pixel- and semantic-level alignment. Tasks covered include image reconstruction, object segmentation, and text-to-image generation.
25
+ 2. **Stage 2: Multimodal Instruction Tuning Dataset**: This dataset is used in the second training stage to balance the integration of multimodal inputs and enhance generation controllability.
26
+
27
+ ## Sample Usage
28
+
29
+ You can download the MENTOR dataset components (Stage 1 and Stage 2) using the Hugging Face CLI:
30
+
31
+ ```bash
32
+ # Download Stage-1 dataset
33
+ huggingface-cli download BleachNick/Mentor_Stage1 --repo-type dataset --local-dir Mentor_Stage1
34
+ cd Mentor_Stage1
35
+ cat stage1_data.tar.gz.part-* | pv | tar -xzf -
36
+ cd ..
37
+
38
+ # Download Stage-2 dataset
39
+ huggingface-cli download BleachNick/Mentor_Stage2 --repo-type dataset --local-dir Mentor_Stage2
40
+ cd Mentor_Stage2
41
+ cat stage2_data.tar.gz.part-* | pv | tar -xzf -
42
+ cd ..
43
+ ```
44
+
45
+ For more detailed instructions on training and model usage, please refer to the [official GitHub repository](https://github.com/HaozheZhao/MENTOR).
46
+
47
+ ## Citation
48
+
49
+ If you find MENTOR and its associated datasets useful for your research, please cite the paper:
50
+
51
+ ```bibtex
52
+ @inproceedings{zhao2024mentor,
53
+ title={MENTOR: Efficient Multimodal-Conditioned Tuning for Autoregressive Vision Generation Models},
54
+ author={Zhao, Haozhe* and Cai, Zefan* and Si, Shuzheng and Chen, Liang and
55
+ Gu, Jiuxiang and Xiao, Wen and Hu, Junjie},
56
+ year={2024}
57
+ }
58
+ ```