Undi95 commited on
Commit
a7916c9
·
1 Parent(s): a55094b

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +62 -0
README.md ADDED
@@ -0,0 +1,62 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-nc-4.0
3
+ tags:
4
+ - not-for-all-audiences
5
+ - nsfw
6
+ - mistral
7
+ - pretrained
8
+ ---
9
+
10
+ This is Mistral, but in 11B, and finetuned with qlora of Pippa and LimaRPv3 dataset.
11
+
12
+ I took layers of the original Mistral-7B, and duplicated some layer, this is the first frankeinstein method that I found "acceptable" to expend Mistral.
13
+
14
+ It seems that the first 8 layers of the model is very important, having duplicate of those layers in the model make me think it confuse the model.
15
+
16
+ UPDATE: Forced mergekit to output bfloat16 file, should be the same thing, but since the base model is bfloat16, wanted it to stay bf16 like the OG model. Even if it was written bfloat16 in the config file earlier, it was float16.
17
+
18
+ <!-- description start -->
19
+ ## Description
20
+
21
+ This repo contains fp16 files of Mistral-11B-RP-v1-t.
22
+
23
+ <!-- description end -->
24
+ <!-- description start -->
25
+ ## Model and loras used
26
+
27
+ - [Mistral-7B-v0.1](https://huggingface.co/mistralai/Mistral-7B-v0.1/)
28
+ - PIPPA dataset 11B qlora made on the spot and trained for this model specifically
29
+ - LimaRPv3 dataset 11B qlora made on the spot and trained for this model specifically
30
+
31
+ <!-- description end -->
32
+ <!-- prompt-template start -->
33
+ ## Prompt template: Alpaca
34
+
35
+ ```
36
+ Below is an instruction that describes a task. Write a response that appropriately completes the request.
37
+
38
+ ### Instruction:
39
+ {prompt}
40
+
41
+ ### Response:
42
+
43
+ ```
44
+
45
+ ## The secret sauce
46
+
47
+ ```
48
+ slices:
49
+ - sources:
50
+ - model: mistralai/Mistral-7B-v0.1
51
+ layer_range: [0, 24]
52
+ - sources:
53
+ - model: mistralai/Mistral-7B-v0.1
54
+ layer_range: [8, 32]
55
+ merge_method: passthrough
56
+ dtype: float16
57
+ ```
58
+
59
+
60
+ Special thanks to Sushi.
61
+
62
+ If you want to support me, you can [here](https://ko-fi.com/undiai).