Text Generation
Transformers
Safetensors
Chinese
English
llama
Inference Endpoints
text-generation-inference
Azure99 commited on
Commit
05a9ef3
1 Parent(s): 9524ce0

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
+ datasets:
4
+ - Azure99/blossom-chat-v3
5
+ - Azure99/blossom-math-v4
6
+ - Azure99/blossom-wizard-v3
7
+ - Azure99/blossom-orca-v3
8
+ language:
9
+ - zh
10
+ - en
11
  ---
12
+ # **BLOSSOM-v5-34b**
13
+
14
+ [💻Github](https://github.com/Azure99/BlossomLM) • [🚀Blossom Chat Demo](https://blossom-chat.com/)
15
+
16
+ ### What's new?
17
+
18
+ The Blossom V5 series models is fully trained using high-quality data distilled from gpt-4-0125-preview, resulting in significant improvements.
19
+
20
+ ### Introduction
21
+
22
+ Blossom is a conversational large language model, fine-tuned on the Blossom Orca/Wizard/Chat/Math mixed dataset based on the Yi-34B pre-trained model. Blossom possesses robust general capabilities and context comprehension. Additionally, the high-quality Chinese and English datasets used for training have been made open source.
23
+
24
+ Training was conducted in two stages. The first stage used 40K Wizard, 40K Orca, 10K Math single-turn instruction datasets, training for 1 epoch; the second stage used 10K Blossom chat multi-turn dialogue dataset, and 10% randomly sampled data from the first stage, training for 3 epochs.
25
+
26
+ ### Inference
27
+
28
+ Inference is performed in the form of dialogue continuation.
29
+
30
+ Single-turn dialogue
31
+
32
+ ```
33
+ A chat between a human and an artificial intelligence bot. The bot gives helpful, detailed, and polite answers to the human's questions.
34
+ |Human|: hello
35
+ |Bot|:
36
+ ```
37
+
38
+ Multi-turn dialogue
39
+
40
+ ```
41
+ A chat between a human and an artificial intelligence bot. The bot gives helpful, detailed, and polite answers to the human's questions.
42
+ |Human|: hello
43
+ |Bot|: Hello! How can I assist you today?<|endoftext|>
44
+ |Human|: Generate a random number using python
45
+ |Bot|:
46
+ ```
47
+
48
+ Note: At the end of the Bot's output in the historical conversation, append a `<|endoftext|>`.