Joschka Strueber commited on
Commit
5c5dc6a
·
1 Parent(s): 64b132e

[Add, Fix] add list of ungated models

Browse files
Files changed (2) hide show
  1. src/dataloading.py +3 -4
  2. src/models.txt +457 -0
src/dataloading.py CHANGED
@@ -10,7 +10,7 @@ def get_leaderboard_models_reload():
10
 
11
  # Load prechecked models
12
  try:
13
- ungated_models = set(line.strip() for line in open("models.txt"))
14
  except FileNotFoundError:
15
  ungated_models = set()
16
 
@@ -47,7 +47,7 @@ def get_leaderboard_models_reload():
47
  print(f"Number of models: {len(models)}")
48
 
49
  # Save model list as txt file
50
- with open("models.txt", "w") as f:
51
  for model in models:
52
  f.write(model + "\n")
53
 
@@ -56,7 +56,7 @@ def get_leaderboard_models_reload():
56
 
57
  def get_leaderboard_models():
58
  # Load prechecked (ungated) models
59
- with open("models.txt", "r") as f:
60
  ungated_models = [line.strip() for line in f]
61
 
62
  return sorted(ungated_models)
@@ -140,4 +140,3 @@ def load_run_data_cached(model_name, dataset_name):
140
 
141
  if __name__ == "__main__":
142
  get_leaderboard_models_reload()
143
-
 
10
 
11
  # Load prechecked models
12
  try:
13
+ ungated_models = set(line.strip() for line in open("src/models.txt"))
14
  except FileNotFoundError:
15
  ungated_models = set()
16
 
 
47
  print(f"Number of models: {len(models)}")
48
 
49
  # Save model list as txt file
50
+ with open("src/models.txt", "w") as f:
51
  for model in models:
52
  f.write(model + "\n")
53
 
 
56
 
57
  def get_leaderboard_models():
58
  # Load prechecked (ungated) models
59
+ with open("src/models.txt", "r") as f:
60
  ungated_models = [line.strip() for line in f]
61
 
62
  return sorted(ungated_models)
 
140
 
141
  if __name__ == "__main__":
142
  get_leaderboard_models_reload()
 
src/models.txt ADDED
@@ -0,0 +1,457 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Pinkstack/SuperThoughts-CoT-14B-16k-o1-QwQ
2
+ prithivMLmods/QwQ-LCoT-14B-Conversational
3
+ pankajmathur/orca_mini_phi-4
4
+ 01-ai/Yi-34B
5
+ Deci/DeciLM-7B
6
+ Qwen/Qwen1.5-7B
7
+ meta-llama/Meta-Llama-3-8B-Instruct
8
+ mistralai/Mistral-7B-v0.1
9
+ microsoft/Phi-3-mini-4k-instruct
10
+ 01-ai/Yi-1.5-9B-Chat
11
+ LLM360/K2
12
+ 01-ai/Yi-1.5-9B
13
+ meta-llama/Meta-Llama-3-8B
14
+ google/gemma-7b
15
+ google/recurrentgemma-2b
16
+ databricks/dbrx-base
17
+ meta-llama/Meta-Llama-3-70B-Instruct
18
+ HuggingFaceH4/zephyr-7b-beta
19
+ HuggingFaceH4/zephyr-7b-alpha
20
+ mistralai/Mistral-7B-v0.3
21
+ mlabonne/AlphaMonarch-7B
22
+ mlabonne/Beyonder-4x7B-v3
23
+ 01-ai/Yi-1.5-6B-Chat
24
+ 01-ai/Yi-1.5-6B
25
+ 01-ai/Yi-1.5-9B-32K
26
+ 01-ai/Yi-6B
27
+ stabilityai/stablelm-2-zephyr-1_6b
28
+ stabilityai/stablelm-2-1_6b-chat
29
+ 01-ai/Yi-6B-Chat
30
+ stabilityai/stablelm-zephyr-3b
31
+ 01-ai/Yi-1.5-9B-Chat-16K
32
+ stabilityai/stablelm-2-1_6b
33
+ allenai/OLMo-7B-hf
34
+ allenai/OLMo-7B-Instruct-hf
35
+ allenai/OLMo-1.7-7B-hf
36
+ Qwen/Qwen1.5-0.5B
37
+ mistral-community/Mixtral-8x22B-v0.1
38
+ 01-ai/Yi-1.5-34B
39
+ 01-ai/Yi-1.5-34B-32K
40
+ 01-ai/Yi-34B-Chat
41
+ microsoft/phi-1
42
+ meta-llama/Llama-2-7b-chat-hf
43
+ meta-llama/Llama-2-7b-hf
44
+ meta-llama/Llama-2-70b-chat-hf
45
+ meta-llama/Meta-Llama-3-70B
46
+ meta-llama/Llama-2-70b-hf
47
+ microsoft/phi-1_5
48
+ microsoft/phi-2
49
+ Qwen/Qwen2-1.5B
50
+ Qwen/Qwen2-0.5B
51
+ google/gemma-2b
52
+ mlabonne/NeuralDaredevil-8B-abliterated
53
+ Qwen/Qwen2-7B
54
+ HuggingFaceH4/zephyr-7b-gemma-v0.1
55
+ stabilityai/stablelm-2-12b-chat
56
+ Qwen/Qwen2-7B-Instruct
57
+ Qwen/Qwen1.5-4B-Chat
58
+ Qwen/Qwen1.5-0.5B-Chat
59
+ Qwen/Qwen1.5-1.8B-Chat
60
+ Qwen/Qwen1.5-14B-Chat
61
+ Qwen/Qwen1.5-7B-Chat
62
+ meta-llama/Llama-2-13b-chat-hf
63
+ Qwen/Qwen1.5-1.8B
64
+ Qwen/Qwen1.5-14B
65
+ tiiuae/falcon-7b
66
+ databricks/dolly-v2-7b
67
+ Qwen/Qwen1.5-MoE-A2.7B
68
+ Qwen/Qwen1.5-MoE-A2.7B-Chat
69
+ 01-ai/Yi-1.5-34B-Chat
70
+ 01-ai/Yi-34B-200K
71
+ abacusai/Smaug-34B-v0.1
72
+ abacusai/Smaug-72B-v0.1
73
+ google/gemma-7b-it
74
+ HuggingFaceH4/zephyr-orpo-141b-A35b-v0.1
75
+ google/gemma-2b-it
76
+ google/gemma-1.1-2b-it
77
+ google/gemma-1.1-7b-it
78
+ mistralai/Mistral-7B-Instruct-v0.1
79
+ google/recurrentgemma-2b-it
80
+ mlabonne/OrpoLlama-3-8B
81
+ mlabonne/phixtral-2x2_8
82
+ Qwen/Qwen2-1.5B-Instruct
83
+ stabilityai/stablelm-2-12b
84
+ Qwen/Qwen1.5-4B
85
+ stabilityai/stablelm-3b-4e1t
86
+ microsoft/Phi-3-medium-4k-instruct
87
+ Qwen/Qwen2-0.5B-Instruct
88
+ deepseek-ai/deepseek-llm-7b-chat
89
+ microsoft/Phi-3-small-128k-instruct
90
+ mistral-community/Mistral-7B-v0.2
91
+ meta-llama/Llama-2-13b-hf
92
+ CohereForAI/aya-23-8B
93
+ databricks/dolly-v2-3b
94
+ databricks/dolly-v2-12b
95
+ deepseek-ai/deepseek-moe-16b-chat
96
+ mistralai/Mistral-7B-Instruct-v0.3
97
+ deepseek-ai/deepseek-moe-16b-base
98
+ microsoft/DialoGPT-medium
99
+ mistralai/Mixtral-8x7B-Instruct-v0.1
100
+ deepseek-ai/deepseek-llm-7b-base
101
+ databricks/dolly-v1-6b
102
+ mistralai/Mixtral-8x7B-v0.1
103
+ CohereForAI/c4ai-command-r-v01
104
+ CohereForAI/aya-23-35B
105
+ mistral-community/mixtral-8x22B-v0.3
106
+ tiiuae/falcon-40b-instruct
107
+ tiiuae/falcon-40b
108
+ CohereForAI/c4ai-command-r-plus
109
+ microsoft/Orca-2-7b
110
+ Qwen/Qwen1.5-110B-Chat
111
+ allenai/OLMo-1B-hf
112
+ microsoft/Orca-2-13b
113
+ LLM360/K2-Chat
114
+ mistralai/Mixtral-8x22B-v0.1
115
+ microsoft/Phi-3-mini-128k-instruct
116
+ Qwen/Qwen2-72B-Instruct
117
+ Qwen/Qwen1.5-110B
118
+ Qwen/Qwen1.5-32B-Chat
119
+ Qwen/Qwen2-72B
120
+ deepseek-ai/deepseek-llm-67b-chat
121
+ Qwen/Qwen1.5-32B
122
+ NousResearch/Yarn-Llama-2-13b-128k
123
+ google/recurrentgemma-9b
124
+ google/recurrentgemma-9b-it
125
+ pankajmathur/orca_mini_7b
126
+ meta-llama/Meta-Llama-3.1-8B
127
+ 01-ai/Yi-1.5-34B-Chat-16K
128
+ meta-llama/Meta-Llama-3.1-70B
129
+ HuggingFaceTB/SmolLM-1.7B
130
+ mlabonne/Daredevil-8B
131
+ HuggingFaceTB/SmolLM-1.7B-Instruct
132
+ HuggingFaceTB/SmolLM-135M-Instruct
133
+ HuggingFaceTB/SmolLM-135M
134
+ HuggingFaceTB/SmolLM-360M-Instruct
135
+ HuggingFaceTB/SmolLM-360M
136
+ meta-llama/Meta-Llama-3.1-8B-Instruct
137
+ mistralai/Mistral-Nemo-Instruct-2407
138
+ mistralai/Mistral-Nemo-Base-2407
139
+ meta-llama/Meta-Llama-3.1-70B-Instruct
140
+ mlabonne/NeuralBeagle14-7B
141
+ mlabonne/Daredevil-8B-abliterated
142
+ tiiuae/falcon-mamba-7b
143
+ BAAI/Infinity-Instruct-3M-0613-Llama3-70B
144
+ google/flan-t5-small
145
+ stabilityai/StableBeluga2
146
+ google/gemma-2-2b-it
147
+ google/gemma-2-2b
148
+ abacusai/Smaug-Llama-3-70B-Instruct-32K
149
+ abacusai/Smaug-Qwen2-72B-Instruct
150
+ 0-hero/Matter-0.2-7B-DPO
151
+ google/flan-t5-xl
152
+ abacusai/Llama-3-Smaug-8B
153
+ DeepMount00/Llama-3-8b-Ita
154
+ google/codegemma-1.1-2b
155
+ Qwen/Qwen2-57B-A14B-Instruct
156
+ microsoft/Phi-3.5-mini-instruct
157
+ microsoft/Phi-3.5-MoE-instruct
158
+ nvidia/Mistral-NeMo-Minitron-8B-Base
159
+ google/gemma-2-27b-it
160
+ google/gemma-2-27b
161
+ google/flan-t5-base
162
+ google/flan-t5-large
163
+ google/flan-t5-xxl
164
+ google/flan-ul2
165
+ AALF/gemma-2-27b-it-SimPO-37K
166
+ microsoft/Phi-3-medium-128k-instruct
167
+ microsoft/Phi-3-small-8k-instruct
168
+ mlabonne/ChimeraLlama-3-8B-v3
169
+ mlabonne/ChimeraLlama-3-8B-v2
170
+ abacusai/Smaug-Mixtral-v0.1
171
+ abacusai/Dracarys-72B-Instruct
172
+ abacusai/Liberated-Qwen1.5-14B
173
+ CoolSpring/Qwen2-0.5B-Abyme
174
+ abacusai/bigstral-12b-32k
175
+ google/mt5-small
176
+ google/mt5-base
177
+ google/umt5-base
178
+ google/switch-base-8
179
+ mlabonne/Meta-Llama-3.1-8B-Instruct-abliterated
180
+ google/mt5-xxl
181
+ abacusai/bigyi-15b
182
+ Qwen/Qwen2.5-7B-Instruct
183
+ Qwen/Qwen2.5-7B
184
+ Qwen/Qwen2.5-14B-Instruct
185
+ Qwen/Qwen2.5-14B
186
+ mistralai/Mistral-Small-Instruct-2409
187
+ Qwen/Qwen2.5-3B-Instruct
188
+ Qwen/Qwen2.5-32B-Instruct
189
+ Qwen/Qwen2.5-0.5B-Instruct
190
+ Qwen/Qwen2.5-0.5B
191
+ Qwen/Qwen2.5-1.5B
192
+ Qwen/Qwen2.5-1.5B-Instruct
193
+ Qwen/Qwen2.5-3B
194
+ Qwen/Qwen2.5-32B
195
+ Qwen/Qwen2.5-72B-Instruct
196
+ Qwen/Qwen2.5-72B
197
+ Qwen/Qwen2.5-Coder-7B-Instruct
198
+ Qwen/Qwen2.5-Math-7B-Instruct
199
+ CohereForAI/c4ai-command-r-plus-08-2024
200
+ Qwen/Qwen2-Math-7B
201
+ 1TuanPham/T-VisStar-7B-v0.1
202
+ Qwen/Qwen2.5-Coder-7B
203
+ Qwen/Qwen2-Math-72B-Instruct
204
+ meta-llama/Llama-3.2-1B-Instruct
205
+ meta-llama/Llama-3.2-1B
206
+ meta-llama/Llama-3.2-3B-Instruct
207
+ meta-llama/Llama-3.2-3B
208
+ mlabonne/BigQwen2.5-Echo-47B-Instruct
209
+ nvidia/Llama-3.1-Minitron-4B-Depth-Base
210
+ nvidia/Nemotron-Mini-4B-Instruct
211
+ nvidia/Minitron-4B-Base
212
+ nvidia/Minitron-8B-Base
213
+ AALF/gemma-2-27b-it-SimPO-37K-100steps
214
+ Qwen/Qwen2.5-Math-7B
215
+ Goekdeniz-Guelmez/Josiefied-Qwen2.5-1.5B-Instruct-abliterated-v2
216
+ mistralai/Codestral-22B-v0.1
217
+ Qwen/Qwen2.5-Math-72B-Instruct
218
+ mlabonne/BigQwen2.5-52B-Instruct
219
+ Cran-May/T.E-8.1
220
+ allenai/OLMoE-1B-7B-0924
221
+ allenai/OLMoE-1B-7B-0924-Instruct
222
+ zelk12/recoilme-gemma-2-Ataraxy-9B-v0.1
223
+ nvidia/Mistral-NeMo-Minitron-8B-Instruct
224
+ zelk12/recoilme-gemma-2-Gutenberg-Doppel-9B-v0.1
225
+ google/gemma-2-2b-jpn-it
226
+ zelk12/recoilme-gemma-2-Ataraxy-9B-v0.2
227
+ AtAndDev/Qwen2.5-1.5B-continuous-learnt
228
+ mlabonne/Hermes-3-Llama-3.1-70B-lorablated
229
+ nvidia/Llama-3.1-Nemotron-70B-Instruct-HF
230
+ Gunulhona/Gemma-Ko-Merge-PEFT
231
+ DeepAutoAI/d2nwg_causal_gpt2
232
+ BlackBeenie/llama-3.1-8B-Galore-openassistant-guanaco
233
+ DeepMount00/Lexora-Lite-3B
234
+ Qwen/Qwen2-VL-7B-Instruct
235
+ Qwen/Qwen2-VL-72B-Instruct
236
+ TinyLlama/TinyLlama-1.1B-Chat-v0.5
237
+ Marsouuu/lareneg1_78B-ECE-PRYMMAL-Martial
238
+ OpenBuddy/openbuddy-nemotron-70b-v23.1-131k
239
+ CohereForAI/aya-expanse-8b
240
+ CohereForAI/aya-expanse-32b
241
+ CultriX/Qwen2.5-14B-MegaMerge-pt2
242
+ PJMixers-Dev/LLaMa-3.2-Instruct-JankMix-v0.2-SFT-HailMary-v0.1-KTO-3B
243
+ BramVanroy/fietje-2
244
+ BramVanroy/fietje-2-chat
245
+ BramVanroy/GEITje-7B-ultra
246
+ Gunulhona/Gemma-Ko-Merge
247
+ BramVanroy/fietje-2-instruct
248
+ CombinHorizon/Rombos-Qwen2.5-7B-Inst-BaseMerge-TIES
249
+ DreadPoor/Aspire_1.3-8B_model-stock
250
+ HuggingFaceTB/SmolLM2-135M
251
+ HuggingFaceTB/SmolLM2-135M-Instruct
252
+ HuggingFaceTB/SmolLM2-360M
253
+ HuggingFaceTB/SmolLM2-1.7B
254
+ HuggingFaceTB/SmolLM2-1.7B-Instruct
255
+ 3rd-Degree-Burn/Llama-3.1-8B-Squareroot-v1
256
+ BlackBeenie/Neos-Gemma-2-9b
257
+ BlackBeenie/Neos-Llama-3.1-base
258
+ Qwen/Qwen2.5-Coder-14B-Instruct
259
+ Qwen/Qwen2.5-Coder-14B
260
+ HuggingFaceTB/SmolLM2-360M-Instruct
261
+ Dans-DiscountModels/Mistral-7b-v0.3-Test-E0.7
262
+ Goekdeniz-Guelmez/Josiefied-Qwen2.5-0.5B-Instruct-abliterated-v1
263
+ BlackBeenie/Bloslain-8B-v0.2
264
+ 3rd-Degree-Burn/L-3.1-Science-Writer-8B
265
+ CultriX/SeQwence-14B-v5
266
+ Aurel9/testmerge-7b
267
+ CultriX/SeQwence-14B
268
+ mistralai/Mistral-Large-Instruct-2411
269
+ AALF/FuseChat-Llama-3.1-8B-Instruct-preview
270
+ GoToCompany/llama3-8b-cpt-sahabatai-v1-instruct
271
+ AALF/FuseChat-Llama-3.1-8B-SFT-preview
272
+ allenai/Llama-3.1-Tulu-3-8B
273
+ allenai/Llama-3.1-Tulu-3-8B-DPO
274
+ allenai/Llama-3.1-Tulu-3-8B-SFT
275
+ allenai/Llama-3.1-Tulu-3-8B-RM
276
+ FlofloB/10k_continued_pretraining_Phi-3-mini-4k-instruct_Unsloth_merged_16bit
277
+ nvidia/OpenMath2-Llama3.1-8B
278
+ CultriX/Qwestion-14B
279
+ FlofloB/10k_continued_pretraining_Qwen2.5-0.5B-Instruct_Unsloth_merged_16bit
280
+ FlofloB/40k_continued_pretraining_Qwen2.5-0.5B-Instruct_Unsloth_merged_16bit
281
+ AGI-0/smartllama3.1-8B-001
282
+ Delta-Vector/Control-8B-V1.1
283
+ Junhoee/Qwen-Megumin
284
+ Dans-DiscountModels/mistral-7b-test-merged
285
+ CultriX/SeQwence-14Bv1
286
+ CultriX/SeQwence-14B-EvolMerge
287
+ CultriX/SeQwence-14B-EvolMergev1
288
+ BlackBeenie/Neos-Phi-3-14B-v0.1
289
+ CultriX/SeQwence-14Bv3
290
+ DreadPoor/Sweetened_Condensed_Milk-8B-Model_Stock
291
+ allenai/Llama-3.1-Tulu-3-70B-SFT
292
+ allenai/Llama-3.1-Tulu-3-70B
293
+ allenai/Llama-3.1-Tulu-3-70B-DPO
294
+ Qwen/QwQ-32B-Preview
295
+ Norquinal/Bravo
296
+ JackFram/llama-68m
297
+ JackFram/llama-160m
298
+ mistralai/Ministral-8B-Instruct-2410
299
+ DreadPoor/Matryoshka-8B-LINEAR
300
+ ClaudioItaly/intelligence-cod-rag-7b-v3
301
+ MaziyarPanahi/calme-3.2-instruct-78b
302
+ meta-llama/Llama-3.3-70B-Instruct
303
+ DreadPoor/remember_to_breathe-8b-Model-Stock
304
+ Corianas/Neural-Mistral-7B
305
+ nvidia/Hymba-1.5B-Base
306
+ nvidia/Hymba-1.5B-Instruct
307
+ CombinHorizon/Josiefied-abliteratedV4-Qwen2.5-14B-Inst-BaseMerge-TIES
308
+ CombinHorizon/huihui-ai-abliteratedV2-Qwen2.5-14B-Inst-BaseMerge-TIES
309
+ meta-llama/Llama-3.1-8B
310
+ CombinHorizon/huihui-ai-abliterated-Qwen2.5-32B-Inst-BaseMerge-TIES
311
+ CultriX/SeQwence-14Bv2
312
+ AuraIndustries/Aura-8B
313
+ DRXD1000/Atlas-7B
314
+ Qwen/Qwen2.5-Coder-32B-Instruct
315
+ Qwen/Qwen2.5-Coder-32B
316
+ LGAI-EXAONE/EXAONE-3.5-7.8B-Instruct
317
+ Goekdeniz-Guelmez/josie-7b-v6.0-step2000
318
+ Corianas/Quokka_2.7b
319
+ tiiuae/Falcon3-7B-Base
320
+ tiiuae/Falcon3-10B-Base
321
+ tiiuae/Falcon3-Mamba-7B-Base
322
+ tiiuae/Falcon3-3B-Base
323
+ tiiuae/Falcon3-Mamba-7B-Instruct
324
+ tiiuae/Falcon3-1B-Base
325
+ tiiuae/Falcon3-1B-Instruct
326
+ tiiuae/Falcon3-3B-Instruct
327
+ tiiuae/Falcon3-10B-Instruct
328
+ tiiuae/Falcon3-7B-Instruct
329
+ Alsebay/Qwen2.5-7B-test-novelist
330
+ AuraIndustries/Aura-4B
331
+ T145/ZEUS-8B-V8
332
+ EpistemeAI/Polypsyche-Llama-3.1-8B-Instruct-Agent-0.003-128K-code-ds-auto-Empathy
333
+ Aashraf995/Creative-7B-nerd
334
+ Aashraf995/Qwen-Evo-7B
335
+ Aashraf995/QwenStock-14B
336
+ Aashraf995/Gemma-Evo-10B
337
+ AuraIndustries/Aura-MoE-2x4B
338
+ Bllossom/llama-3.2-Korean-Bllossom-AICA-5B
339
+ AuraIndustries/Aura-MoE-2x4B-v2
340
+ HelpingAI/Cipher-20B
341
+ HPAI-BSC/Qwen2.5-Aloe-Beta-7B
342
+ DreadPoor/Again-8B-Model_Stock
343
+ PJMixers-Dev/LLaMa-3.1-Instruct-Interleaved-Zeroed-13B
344
+ DreadPoor/Elusive_Dragon_Heart-8B-LINEAR
345
+ CarrotAI/Llama-3.2-Rabbit-Ko-3B-Instruct-2412
346
+ CultriX/Qwen2.5-14B-Emerged
347
+ CultriX/Qwen2.5-14B-Wernickev3
348
+ CarrotAI/Llama-3.2-Rabbit-Ko-3B-Instruct
349
+ CohereForAI/c4ai-command-r7b-12-2024
350
+ EpistemeAI/Polypsyche-Llama-3.1-8B-Instruct-Agent-0.003-128K-code-ds-auto-Logic
351
+ CombinHorizon/zetasepic-abliteratedV2-Qwen2.5-32B-Inst-BaseMerge-TIES
352
+ NyxKrage/Microsoft_Phi-4
353
+ DreadPoor/Casuar-9B-Model_Stock
354
+ CultriX/Qwen2.5-14B-Unity
355
+ CultriX/Qwen2.5-14B-Broca
356
+ CultriX/Qwenfinity-2.5-14B
357
+ CultriX/Qwen2.5-14B-Brocav7
358
+ CultriX/Qwen2.5-14B-Brocav3
359
+ CultriX/Qwen2.5-14B-Brocav6
360
+ CultriX/Qwen2.5-14B-FinalMerge
361
+ ContactDoctor/Bio-Medical-Llama-3-8B
362
+ Daemontatox/RA_Reasoner
363
+ Daemontatox/PathfinderAI
364
+ JayHyeon/Qwen-0.5B-eDPO-5epoch
365
+ JayHyeon/Qwen-0.5B-IRPO-5epoch
366
+ JayHyeon/Qwen-0.5B-DPO-5epoch
367
+ JayHyeon/Qwen2.5-0.5B-Instruct-SFT
368
+ JayHyeon/Qwen2.5-0.5B-Instruct-SFT-IRPO-1epoch_v1
369
+ DreadPoor/UNTESTED-VENN_1.2-8B-Model_Stock
370
+ JayHyeon/Qwen2.5-0.5B-SFT-1e-4
371
+ Daemontatox/AetherTOT
372
+ Daemontatox/PixelParse_AI
373
+ DavieLion/Llama-3.2-1B-SPIN-iter3
374
+ JayHyeon/Qwen2.5-0.5B-SFT-2e-4-3ep
375
+ Daemontatox/RA_Reasoner2.0
376
+ Daemontatox/AetherSett
377
+ Daemontatox/Sphinx2.0
378
+ Daemontatox/PathFinderAI2.0
379
+ JayHyeon/Qwen2.5-0.5B-SFT-2e-5-5ep-MDPO_5e-7_3ep_0alp_0lam_2ep
380
+ JayHyeon/Qwen2.5-0.5B-SFT-2e-5-5ep-MDPO_7e-7_3ep_0alp_0lam_1ep
381
+ DreadPoor/Happy_New_Year-8B-Model_Stock
382
+ Daemontatox/TinySphinx2.0
383
+ Daemontatox/SphinX
384
+ Daemontatox/PathFinderAi3.0
385
+ Daemontatox/NemoR
386
+ JayHyeon/Qwen2.5-0.5B-SFT-2e-5-2ep-DPO_7e-7_2ep_0alp_0lam
387
+ Ahdoot/StructuredThinker-v0.3-MoreStructure
388
+ Daemontatox/RA2.0
389
+ JayHyeon/Qwen2.5-0.5B-SFT-2e-5-2ep-DPO_3e-6-2ep_0alp_0lam
390
+ JayHyeon/Qwen2.5-0.5B-SFT-2e-5-2ep-IRPO_5e-7-2ep_1alp_0lam
391
+ JayHyeon/Qwen2.5-0.5B-SFT-2e-5-2ep-IRPO_5e-7-1ep_1alp_0lam
392
+ DebateLabKIT/Llama-3.1-Argunaut-1-8B-SFT
393
+ JayHyeon/Qwen2.5-0.5B-SFT-2e-5-2ep-DPO_3e-6-3ep_0alp_0lam
394
+ Daemontatox/MawaredT1
395
+ JayHyeon/Qwen2.5-0.5B-SFT-2e-5-2ep-IRPO_5e-6-1ep_1alp_0lam
396
+ JayHyeon/Qwen2.5-0.5B-SFT-2e-5-2ep-IRPO_5e-6-3ep_1alp_0lam
397
+ JayHyeon/Qwen2.5-0.5B-SFT-2e-5-2ep-DPO_5e-6-3ep_0alp_0lam
398
+ DreadPoor/Derivative-8B-Model_Stock
399
+ Alepach/notHumpback-M1
400
+ Alepach/notHumpback-M0
401
+ Danielbrdz/Barcenas-10b
402
+ Ahdoot/Test_StealthThinker
403
+ FuseAI/FuseChat-Llama-3.1-8B-Instruct
404
+ JayHyeon/Qwen2.5-0.5B-SFT-2e-5-2ep-MDPO_0.5_1e-7-2ep_0alp_0lam
405
+ DreadPoor/Derivative_V2_ALT-8B-Model_Stock
406
+ DreadPoor/Derivative_V2-8B-Model_Stock
407
+ Daemontatox/CogitoZ14
408
+ Goekdeniz-Guelmez/josie-7b-v6.0
409
+ Goekdeniz-Guelmez/josie-3b-v6.0
410
+ allenai/OLMo-2-1124-7B-Instruct
411
+ DreadPoor/Derivative_V3-8B-Model_Stock
412
+ Daemontatox/CogitoZ
413
+ microsoft/phi-4
414
+ FlofloB/smollm2-135M_pretrained_200k_fineweb_uncovai_selected
415
+ JayHyeon/Qwen_0.5-DPO_5e-7-2ep_0alp_0lam
416
+ JayHyeon/Qwen_0.5-DPO_5e-7-1ep_0alp_0lam
417
+ JayHyeon/Qwen_0.5-DPOP_5e-7-2ep_0alp_5lam
418
+ JayHyeon/Qwen_0.5-DPOP_5e-7-3ep_0alp_5lam
419
+ JayHyeon/Qwen_0.5-DPOP_5e-7-1ep_0alp_5lam
420
+ JayHyeon/Qwen_0.5-DPO_3e-6-2ep_0alp_0lam
421
+ JayHyeon/Qwen_0.5-DPO_3e-6-1ep_0alp_0lam
422
+ JayHyeon/Qwen_0.5-DPOP_3e-6-2ep_0alp_5lam
423
+ JayHyeon/Qwen_0.5-IRPO_3e-6-2ep_1alp_0lam
424
+ JayHyeon/Qwen_0.5-IRPO_3e-6-3ep_1alp_0lam
425
+ JayHyeon/Qwen_0.5-DPOP_3e-6-3ep_0alp_5lam
426
+ JayHyeon/Qwen_0.5-IRPO_3e-6-1ep_1alp_0lam
427
+ JayHyeon/Qwen_0.5-MDPO_0.3_5e-7-3ep_0alp_0lam
428
+ JayHyeon/Qwen_0.5-MDPO_0.3_3e-6-3ep_0alp_0lam
429
+ JayHyeon/Qwen_0.5-MDPO_0.7_5e-7-3ep_0alp_0lam
430
+ JayHyeon/Qwen_0.5-MDPO_0.7_3e-6-3ep_0alp_0lam
431
+ Sakalti/Neptuno-Alpha
432
+ FlofloB/smollm2-135M_pretrained_400k_fineweb_uncovai_selected
433
+ FlofloB/smollm2-135M_pretrained_600k_fineweb_uncovai_selected
434
+ DreadPoor/BaeZel_V3-8B-Model_Stock
435
+ Daemontatox/AetherUncensored
436
+ FlofloB/smollm2-135M_pretrained_1400k_fineweb_uncovai_selected
437
+ CultriX/Qwen2.5-14B-BrocaV9
438
+ DavidAU/Gemma-The-Writer-J.GutenBerg-10B
439
+ OpenBuddy/openbuddy-llama3.3-70b-v24.1-131k
440
+ deepseek-ai/DeepSeek-R1-Distill-Qwen-14B
441
+ deepseek-ai/DeepSeek-R1-Distill-Llama-8B
442
+ deepseek-ai/DeepSeek-R1-Distill-Qwen-7B
443
+ deepseek-ai/DeepSeek-R1-Distill-Qwen-1.5B
444
+ deepseek-ai/DeepSeek-R1-Distill-Qwen-32B
445
+ deepseek-ai/DeepSeek-R1-Distill-Llama-70B
446
+ nvidia/AceMath-1.5B-Instruct
447
+ nvidia/AceMath-7B-RM
448
+ nvidia/AceMath-7B-Instruct
449
+ nvidia/AceInstruct-1.5B
450
+ nvidia/AceInstruct-7B
451
+ nvidia/AceInstruct-72B
452
+ nvidia/AceMath-72B-Instruct
453
+ Qwen/Qwen2.5-7B-Instruct-1M
454
+ Qwen/Qwen2.5-14B-Instruct-1M
455
+ nvidia/AceMath-72B-RM
456
+ mistralai/Mistral-Small-24B-Base-2501
457
+ meta-llama/Llama-3.1-8B-Instruct