liuhaotian commited on
Commit
a8b2027
1 Parent(s): 1be5018

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +45 -0
README.md CHANGED
@@ -1,3 +1,48 @@
1
  ---
2
  license: apache-2.0
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: apache-2.0
3
+ inference: false
4
  ---
5
+
6
+ **NOTE: This "delta model" cannot be used directly.**
7
+ Users have to apply it on top of the original LLaMA weights to get actual LLaVA weights.
8
+ See https://github.com/haotian-liu/LLaVA#llava-weights for instructions.
9
+
10
+ <br>
11
+ <br>
12
+
13
+ # LLaVA Model Card
14
+
15
+ ## Model details
16
+
17
+ **Model type:**
18
+ LLaVA is an open-source chatbot trained by fine-tuning LLaMA/Vicuna on GPT-generated multimodal instruction-following data.
19
+ It is an auto-regressive language model, based on the transformer architecture.
20
+ This model is finetuned on ScienceQA dataset.
21
+
22
+ **Model date:**
23
+ LLaVA was trained in April 2023.
24
+
25
+ **Paper or resources for more information:**
26
+ https://llava-vl.github.io/
27
+
28
+ **License:**
29
+ Apache License 2.0
30
+
31
+ **Where to send questions or comments about the model:**
32
+ https://github.com/haotian-liu/LLaVA/issues
33
+
34
+ ## Intended use
35
+ **Primary intended uses:**
36
+ The primary use of LLaVA is research on large multimodal models and chatbots.
37
+
38
+ **Primary intended users:**
39
+ The primary intended users of the model are researchers and hobbyists in computer vision, natural language processing, machine learning, and artificial intelligence.
40
+
41
+ ## Training dataset
42
+ 595K filtered image-text pairs from CC3M.
43
+ ScienceQA dataset.
44
+
45
+ ## Evaluation dataset
46
+ A preliminary evaluation of the model quality is conducted by creating a set of 90 visual reasoning questions from 30 unique images randomly sampled from COCO val 2014 and each is associated with three types of questions: conversational, detailed description, and complex reasoning. We utilize GPT-4 to judge the model outputs.
47
+ We also evaluate our model on the ScienceQA dataset. Our synergy with GPT-4 sets a new state-of-the-art on the dataset.
48
+ See https://llava-vl.github.io/ for more details.