TheBloke commited on
Commit
ac97512
1 Parent(s): 5078eef

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +45 -3
README.md CHANGED
@@ -1,3 +1,45 @@
1
- ---
2
- license: other
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Vicuna 13B 1.1 HF
2
+
3
+ This is an HF version of the [Vicuna 13B 1.1 model](https://huggingface.co/lmsys/vicuna-13b-delta-v1.1).
4
+
5
+ It was created by merging the deltas provided in the above repo with the original Llama 13B model, [using the code provided on their Github page](https://github.com/lm-sys/FastChat#vicuna-weights).
6
+
7
+ # Vicuna Model Card
8
+
9
+ ## Model details
10
+
11
+ **Model type:**
12
+ Vicuna is an open-source chatbot trained by fine-tuning LLaMA on user-shared conversations collected from ShareGPT.
13
+ It is an auto-regressive language model, based on the transformer architecture.
14
+
15
+ **Model date:**
16
+ Vicuna was trained between March 2023 and April 2023.
17
+
18
+ **Organizations developing the model:**
19
+ The Vicuna team with members from UC Berkeley, CMU, Stanford, and UC San Diego.
20
+
21
+ **Paper or resources for more information:**
22
+ https://vicuna.lmsys.org/
23
+
24
+ **License:**
25
+ Apache License 2.0
26
+
27
+ **Where to send questions or comments about the model:**
28
+ https://github.com/lm-sys/FastChat/issues
29
+
30
+ ## Intended use
31
+ **Primary intended uses:**
32
+ The primary use of Vicuna is research on large language models and chatbots.
33
+
34
+ **Primary intended users:**
35
+ The primary intended users of the model are researchers and hobbyists in natural language processing, machine learning, and artificial intelligence.
36
+
37
+ ## Training dataset
38
+ 70K conversations collected from ShareGPT.com.
39
+
40
+ ## Evaluation dataset
41
+ 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.
42
+
43
+ ## Major updates of weights v1.1
44
+ - 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.
45
+ - Fix the supervised fine-tuning loss computation for better model quality.