rombodawg commited on
Commit
c07902f
1 Parent(s): 89b0c7d

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +111 -0
README.md CHANGED
@@ -1,3 +1,114 @@
1
  ---
2
  license: unknown
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: unknown
3
+ tags:
4
+ - merge
5
  ---
6
+ Everyone-LLM-7b-Base
7
+
8
+
9
+ ![image/jpeg](https://cdn-uploads.huggingface.co/production/uploads/642cc1c253e76b4c2286c58e/ECrHQnZnv8UM9GUCQtlWW.jpeg)
10
+
11
+ EveryoneLLM series of models made by the community, for the community.
12
+
13
+ This is the first version of Everyone-LLM, a model that combines the power of the large majority of powerfull fine-tuned LLM's made by the community, to create a vast and knowledgable LLM with various abilities.
14
+
15
+
16
+ Prompt template: Alpaca
17
+ ```
18
+ Below is an instruction that describes a task. Write a response that appropriately completes the request.
19
+ ### Instruction:
20
+ {prompt}
21
+ ### Response:
22
+ ```
23
+
24
+ The models that were used in this merger were as follow:
25
+
26
+ - https://huggingface.co/cognitivecomputations/dolphin-2.6-mistral-7b-dpo
27
+
28
+ - https://huggingface.co/jondurbin/bagel-dpo-7b-v0.4
29
+
30
+ - https://huggingface.co/Locutusque/Hercules-2.0-Mistral-7B
31
+
32
+ - https://huggingface.co/Open-Orca/Mistral-7B-OpenOrca
33
+
34
+ - https://huggingface.co/teknium/OpenHermes-2.5-Mistral-7B
35
+
36
+ - https://huggingface.co/NousResearch/Nous-Capybara-7B-V1.9
37
+
38
+ - https://huggingface.co/Intel/neural-chat-7b-v3-3
39
+
40
+ - https://huggingface.co/mistralai/Mistral-7B-Instruct-v0.2
41
+
42
+ - https://huggingface.co/senseable/WestLake-7B-v2
43
+
44
+ - https://huggingface.co/defog/sqlcoder-7b
45
+
46
+ - https://huggingface.co/meta-math/MetaMath-Mistral-7B
47
+
48
+ - https://huggingface.co/nextai-team/apollo-v1-7b
49
+
50
+ - https://huggingface.co/WizardLM/WizardMath-7B-V1.1
51
+
52
+ - https://huggingface.co/openchat/openchat-3.5-0106
53
+
54
+ - https://huggingface.co/mistralai/Mistral-7B-v0.1
55
+
56
+ Thank you to the creators of the above ai models, they have full credit for the EveryoneLLM series of models. Without their hard work we wouldnt be able to achieve the great success we have in the open source community. 💗
57
+
58
+ You can find the write up for merging models here:
59
+
60
+ https://docs.google.com/document/d/1_vOftBnrk9NRk5h10UqrfJ5CDih9KBKL61yvrZtVWPE/edit?usp=sharing
61
+
62
+ Config for the merger can be found bellow:
63
+ ```yaml
64
+ models:
65
+ - model: cognitivecomputations_dolphin-2.6-mistral-7b-dpo
66
+ parameters:
67
+ weight: 1
68
+ - model: jondurbin_bagel-dpo-7b-v0.4
69
+ parameters:
70
+ weight: 1
71
+ - model: Locutusque_Hercules-2.0-Mistral-7B
72
+ parameters:
73
+ weight: 1
74
+ - model: Open-Orca_Mistral-7B-OpenOrca
75
+ parameters:
76
+ weight: 1
77
+ - model: teknium_OpenHermes-2.5-Mistral-7B
78
+ parameters:
79
+ weight: 1
80
+ - model: NousResearch_Nous-Capybara-7B-V1.9
81
+ parameters:
82
+ weight: 1
83
+ - model: Intel_neural-chat-7b-v3-3
84
+ parameters:
85
+ weight: 1
86
+ - model: mistralai_Mistral-7B-Instruct-v0.2
87
+ parameters:
88
+ weight: 1
89
+ - model: senseable_WestLake-7B-v2
90
+ parameters:
91
+ weight: 1
92
+ - model: defog_sqlcoder-7b
93
+ parameters:
94
+ weight: 1
95
+ - model: meta-math_MetaMath-Mistral-7B
96
+ parameters:
97
+ weight: 1
98
+ - model: nextai-team_apollo-v1-7b
99
+ parameters:
100
+ weight: 1
101
+ - model: WizardLM_WizardMath-7B-V1.1
102
+ parameters:
103
+ weight: 1
104
+ - model: openchat_openchat-3.5-0106
105
+ parameters:
106
+ weight: 1
107
+ merge_method: task_arithmetic
108
+ base_model: mistralai_Mistral-7B-v0.1
109
+ parameters:
110
+ normalize: true
111
+ int8_mask: true
112
+ dtype: float16
113
+
114
+ ```