eachadea commited on
Commit
1852224
1 Parent(s): 4be6881

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +48 -0
README.md ADDED
@@ -0,0 +1,48 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ inference: false
4
+ ---
5
+
6
+ **NOTE: This model has delta files applied and can be used directly.**
7
+ <br>
8
+ <br>
9
+
10
+ # Vicuna Model Card
11
+
12
+ ## Model details
13
+
14
+ **Model type:**
15
+ Vicuna is an open-source chatbot trained by fine-tuning LLaMA on user-shared conversations collected from ShareGPT.
16
+ It is an auto-regressive language model, based on the transformer architecture.
17
+
18
+ **Model date:**
19
+ Vicuna was trained between March 2023 and April 2023.
20
+
21
+ **Organizations developing the model:**
22
+ The Vicuna team with members from UC Berkeley, CMU, Stanford, and UC San Diego.
23
+
24
+ **Paper or resources for more information:**
25
+ https://vicuna.lmsys.org/
26
+
27
+ **License:**
28
+ Apache License 2.0
29
+
30
+ **Where to send questions or comments about the model:**
31
+ https://github.com/lm-sys/FastChat/issues
32
+
33
+ ## Intended use
34
+ **Primary intended uses:**
35
+ The primary use of Vicuna is research on large language models and chatbots.
36
+
37
+ **Primary intended users:**
38
+ The primary intended users of the model are researchers and hobbyists in natural language processing, machine learning, and artificial intelligence.
39
+
40
+ ## Training dataset
41
+ 70K conversations collected from ShareGPT.com.
42
+
43
+ ## Evaluation dataset
44
+ A preliminary evaluation of the model quality is conducted by creating a set of 80 diverse questions and utilizing GPT-4 to judge the model outputs. See https://vicuna.lmsys.org/ for more details.
45
+
46
+ ## Major updates of weights v1.1
47
+ - Refactor the tokenization and separator. In Vicuna v1.1, the separator has been changed from `"###"` to the EOS token `"</s>"`. This change makes it easier to determine the generation stop criteria and enables better compatibility with other libraries.
48
+ - Fix the supervised fine-tuning loss computation for better model quality.