HenryJJ commited on
Commit
2c0644c
·
1 Parent(s): 93754a1

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +34 -0
README.md ADDED
@@ -0,0 +1,34 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ datasets:
4
+ - databricks/databricks-dolly-15k
5
+ ---
6
+
7
+
8
+ # Instruct_Yi-6B_Dolly15K
9
+ Fine-tuned from Yi-6B, used Dolly15k for the dataset. 90% for training, 10% validation. Trained for 2.0 epochs using Lora. Trained with 1024 context window.
10
+
11
+ # Model Details
12
+ * **Trained by**: trained by HenryJJ.
13
+ * **Model type:** **Instruct_Yi-6B_Dolly15K** is an auto-regressive language model based on the Llama 2 transformer architecture.
14
+ * **Language(s)**: English
15
+ * **License for Instruct_Yi-6B_Dolly15K**: apache-2.0 license
16
+
17
+
18
+ # Prompting
19
+
20
+ ## Prompt Template With Context
21
+ <|startoftext|>[INST]{instruction} {context}[/INST]{response}<|endoftext|>
22
+
23
+ ```
24
+ <|startoftext|>[INST]
25
+ Write a 10-line poem about a given topic
26
+ The topic is about racecars
27
+ [/INST]
28
+ ```
29
+ ## Prompt Template Without Context
30
+ ```
31
+ <|startoftext|>[INST]
32
+ Who was the was the second president of the United States?
33
+ [/INST]
34
+ ```