rombodawg commited on
Commit
7b55426
1 Parent(s): 0f776e3

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +54 -0
README.md CHANGED
@@ -1,3 +1,57 @@
1
  ---
2
  license: apache-2.0
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: apache-2.0
3
+ tags:
4
+ - merge
5
+ - moe
6
  ---
7
+ Open_Gpt4_v0.2
8
+
9
+ This is the quantized gguf version for inference. If you want the unquantized version please reffer to the repo bellow:
10
+
11
+ - https://huggingface.co/rombodawg/Open_Gpt4_8x7B_v0.2
12
+
13
+ ![image/jpeg](https://cdn-uploads.huggingface.co/production/uploads/642cc1c253e76b4c2286c58e/T7QKB0fKNHQvNqAjm8zrH.jpeg)
14
+
15
+ This model is a TIES merger of Mixtral-8x7B-Instruct-v0.1 and bagel-dpo-8x7b-v0.2 with MixtralOrochi8x7B being the Base model.
16
+
17
+
18
+ I was very impressed with MixtralOrochi8x7B performance and multifaceted usecases as it is already a merger of many usefull Mixtral models such as Mixtral instruct,
19
+ Noromaid-v0.1-mixtral, openbuddy-mixtral and possibly other models that were not named. My goal was to expand the models capabilities and make it even more useful of a model, maybe even competitive with closed source models like Gpt-4. But for that more testing is required. I hope the community can help me determine if its deserving of its name. 😊
20
+
21
+ This is the second iteration of this model, using better models in the merger to improve performance (hopefully).
22
+
23
+ Base model:
24
+
25
+ - https://huggingface.co/smelborp/MixtralOrochi8x7B
26
+
27
+ Merged models:
28
+
29
+ - https://huggingface.co/mistralai/Mixtral-8x7B-Instruct-v0.1
30
+
31
+ - https://huggingface.co/jondurbin/bagel-dpo-8x7b-v0.2
32
+
33
+
34
+ Instruct template: Alpaca
35
+
36
+
37
+ Merger config:
38
+ ```
39
+ models:
40
+ - model: Mixtral-8x7B-Instruct-v0.1
41
+ parameters:
42
+ density: .5
43
+ weight: 1
44
+ - model: bagel-dpo-8x7b-v0.2
45
+ parameters:
46
+ density: .5
47
+ weight: .7
48
+
49
+
50
+ merge_method: ties
51
+ base_model: MixtralOrochi8x7B
52
+ parameters:
53
+ normalize: true
54
+ int8_mask: true
55
+ dtype: float16
56
+
57
+ ```