Felladrin commited on
Commit
5e363fc
·
1 Parent(s): e8a6fe6

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +39 -2
README.md CHANGED
@@ -1,9 +1,46 @@
1
  ---
 
2
  tags:
3
  - autotrain
4
  - text-generation
 
 
 
5
  widget:
6
- - text: "I love AutoTrain because "
 
 
 
 
 
 
 
 
 
 
 
7
  ---
8
 
9
- # Model Trained Using AutoTrain
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ license: cc-by-nc-4.0
3
  tags:
4
  - autotrain
5
  - text-generation
6
+ base_model: MBZUAI/LaMini-Neo-125M
7
+ datasets:
8
+ - KnutJaegersberg/WizardLM_evol_instruct_V2_196k_instruct_format
9
  widget:
10
+ - text: |-
11
+ ### Instruction:
12
+ How can I become more healthy?
13
+
14
+ ### Response:
15
+ inference:
16
+ parameters:
17
+ max_new_tokens: 32
18
+ repetition_penalty: 1.15
19
+ do_sample: true
20
+ temperature: 0.5
21
+ top_p: 0.5
22
  ---
23
 
24
+ # MBZUAI's LaMini-Neo-125M trained on the Evol Instruct dataset using AutoTrain
25
+
26
+ - Base model: [MBZUAI/LaMini-Neo-125M](https://huggingface.co/MBZUAI/LaMini-Neo-125M)
27
+ - Dataset: [KnutJaegersberg/WizardLM_evol_instruct_V2_196k_instruct_format](https://huggingface.co/datasets/KnutJaegersberg/WizardLM_evol_instruct_V2_196k_instruct_format)
28
+ - Training: 4.5h under [these parameters](https://huggingface.co/Felladrin/LaMini-Neo-125M-Evol-Instruct/blob/e8a6fe6e88c58d8d48bf97f743cd738e3e55e629/training_params.json)
29
+
30
+ ## Recommended Prompt Format
31
+
32
+ ```
33
+ ### Instruction:
34
+ <instruction>
35
+
36
+ ### Response:
37
+ ```
38
+
39
+ ## Recommended Inference Parameters
40
+
41
+ ```yml
42
+ repetition_penalty: 1.15
43
+ do_sample: true
44
+ temperature: 0.5
45
+ top_p: 0.5
46
+ ```