eachadea commited on
Commit
e5d970e
1 Parent(s): 1cbae5c

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +53 -0
README.md ADDED
@@ -0,0 +1,53 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ inference: true
4
+ ---
5
+
6
+ **NOTE: This GGML conversion is primarily for use with llama.cpp.**
7
+ - 7B parameters
8
+ - 4-bit quantized
9
+ - Based on version 1.1
10
+ - Used PR "More accurate Q4_0 and Q4_1 quantizations #896" (should be closer in quality to unquantized)
11
+ - Uncensored variant is available, but it's based on version 1.0
12
+ <br>
13
+ <br>
14
+
15
+ # Vicuna Model Card
16
+
17
+ ## Model details
18
+
19
+ **Model type:**
20
+ Vicuna is an open-source chatbot trained by fine-tuning LLaMA on user-shared conversations collected from ShareGPT.
21
+ It is an auto-regressive language model, based on the transformer architecture.
22
+
23
+ **Model date:**
24
+ Vicuna was trained between March 2023 and April 2023.
25
+
26
+ **Organizations developing the model:**
27
+ The Vicuna team with members from UC Berkeley, CMU, Stanford, and UC San Diego.
28
+
29
+ **Paper or resources for more information:**
30
+ https://vicuna.lmsys.org/
31
+
32
+ **License:**
33
+ Apache License 2.0
34
+
35
+ **Where to send questions or comments about the model:**
36
+ https://github.com/lm-sys/FastChat/issues
37
+
38
+ ## Intended use
39
+ **Primary intended uses:**
40
+ The primary use of Vicuna is research on large language models and chatbots.
41
+
42
+ **Primary intended users:**
43
+ The primary intended users of the model are researchers and hobbyists in natural language processing, machine learning, and artificial intelligence.
44
+
45
+ ## Training dataset
46
+ 70K conversations collected from ShareGPT.com.
47
+
48
+ ## Evaluation dataset
49
+ 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.
50
+
51
+ ## Major updates of weights v1.1
52
+ - 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.
53
+ - Fix the supervised fine-tuning loss computation for better model quality.