weizhiwang commited on
Commit
1e8257a
·
verified ·
1 Parent(s): 7e75c47

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +51 -0
README.md ADDED
@@ -0,0 +1,51 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ ---
4
+
5
+
6
+ # MLM-Filter-llava-llama-3-8b Model Card
7
+
8
+ ## Model details
9
+
10
+ **Model type:**
11
+ MLM-Filter-8b is an open-source MLLM trained to assess the data quality of image-text paired data. It can generate 4 quality metrics for image-text data: Image Text Matching, Object Detail Fulfillment, Caption Text Quality, and Semantic Understanding.
12
+
13
+ **Model date:**
14
+ MLM-Filter-8B was trained in May 2024.
15
+
16
+ **Paper or resources for more information:**
17
+ https://mlm-filter.github.io/
18
+
19
+ ```
20
+ @article{wang2024finetuned,
21
+ title={Finetuned Multimodal Language Models Are High-Quality Image-Text Data Filters},
22
+ author={Wang, Weizhi and Mrini, Khalil and Yang, Linjie and Kumar, Sateesh and Tian, Yu and Yan, Xifeng and Wang, Heng},
23
+ journal={arXiv preprint arXiv:2403.02677},
24
+ year={2024}
25
+ }
26
+ ```
27
+
28
+ ## License
29
+ Llama 3 is licensed under the LLAMA 3 Community License,
30
+ Copyright (c) Meta Platforms, Inc. All Rights Reserved.
31
+
32
+ **Where to send questions or comments about the model:**
33
+ https://github.com/Victorwz/MLM_Filter/issues
34
+
35
+ ## Intended use
36
+ **Primary intended uses:**
37
+ MLM-Filter can be used as a drop-in replacement for CLIPScore in these tasks:
38
+
39
+ 1. Score image-text data in large-scale pre-training dataset and then filter high-quality subsets based on the scores (For training MLLMs or VLMs, please consider to jointly use the Image-Text Matching score and the Object Detail Fulfillment score);
40
+
41
+ 2. Evaluate the image-text alignment for image2text or text2image generation models;
42
+
43
+ 3. Any potential applications with the need to calculate the image-text alignment.
44
+
45
+
46
+ ## Training dataset
47
+ - 665k instruction sampled from LLaVA-1.5 665k data.
48
+ - 4k instructions on image-text data quality assessment tasks ranging across 4 metrics.
49
+
50
+ ## Usage Sample
51
+ Please follow the instructions in https://github.com/Victorwz/MLM_Filter.