wxgeorge commited on
Commit
e0ccd06
0 Parent(s):

:sparkles: initial commit!

Browse files
Files changed (5) hide show
  1. .gitattributes +35 -0
  2. README.md +19 -0
  3. app.py +97 -0
  4. model-cache.json +1557 -0
  5. requirements.txt +1 -0
.gitattributes ADDED
@@ -0,0 +1,35 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ *.7z filter=lfs diff=lfs merge=lfs -text
2
+ *.arrow filter=lfs diff=lfs merge=lfs -text
3
+ *.bin filter=lfs diff=lfs merge=lfs -text
4
+ *.bz2 filter=lfs diff=lfs merge=lfs -text
5
+ *.ckpt filter=lfs diff=lfs merge=lfs -text
6
+ *.ftz filter=lfs diff=lfs merge=lfs -text
7
+ *.gz filter=lfs diff=lfs merge=lfs -text
8
+ *.h5 filter=lfs diff=lfs merge=lfs -text
9
+ *.joblib filter=lfs diff=lfs merge=lfs -text
10
+ *.lfs.* filter=lfs diff=lfs merge=lfs -text
11
+ *.mlmodel filter=lfs diff=lfs merge=lfs -text
12
+ *.model filter=lfs diff=lfs merge=lfs -text
13
+ *.msgpack filter=lfs diff=lfs merge=lfs -text
14
+ *.npy filter=lfs diff=lfs merge=lfs -text
15
+ *.npz filter=lfs diff=lfs merge=lfs -text
16
+ *.onnx filter=lfs diff=lfs merge=lfs -text
17
+ *.ot filter=lfs diff=lfs merge=lfs -text
18
+ *.parquet filter=lfs diff=lfs merge=lfs -text
19
+ *.pb filter=lfs diff=lfs merge=lfs -text
20
+ *.pickle filter=lfs diff=lfs merge=lfs -text
21
+ *.pkl filter=lfs diff=lfs merge=lfs -text
22
+ *.pt filter=lfs diff=lfs merge=lfs -text
23
+ *.pth filter=lfs diff=lfs merge=lfs -text
24
+ *.rar filter=lfs diff=lfs merge=lfs -text
25
+ *.safetensors filter=lfs diff=lfs merge=lfs -text
26
+ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
27
+ *.tar.* filter=lfs diff=lfs merge=lfs -text
28
+ *.tar filter=lfs diff=lfs merge=lfs -text
29
+ *.tflite filter=lfs diff=lfs merge=lfs -text
30
+ *.tgz filter=lfs diff=lfs merge=lfs -text
31
+ *.wasm filter=lfs diff=lfs merge=lfs -text
32
+ *.xz filter=lfs diff=lfs merge=lfs -text
33
+ *.zip filter=lfs diff=lfs merge=lfs -text
34
+ *.zst filter=lfs diff=lfs merge=lfs -text
35
+ *tfevents* filter=lfs diff=lfs merge=lfs -text
README.md ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ title: anakin87/yo-llama-3-8b-instruct demo with Featherless
3
+ emoji: 💻
4
+ colorFrom: gray
5
+ colorTo: gray
6
+ sdk: gradio
7
+ sdk_version: 4.37.2
8
+ app_file: app.py
9
+ pinned: false
10
+ models:
11
+ - anakin87/yo-Llama-3-8B-Instruct
12
+ ---
13
+
14
+ Play with the yo-llama model thanks to hosting with [Featherless AI](https://featherless.ai)!
15
+
16
+ Most models aren't useable directly on HuggingFace. Even "small" models (like llama3-8bs) require expensive enough hardware that they aren't stood up to operate for free.
17
+
18
+ At featherless, we've taken a different approach, and are able to serve models "serverlessly" at an entirely different scale. yo-llama is one example. Check out https://featherless.ai to see the full range of supported models.
19
+
app.py ADDED
@@ -0,0 +1,97 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from openai import OpenAI
2
+ import gradio as gr
3
+ import os
4
+ import json
5
+ import functools
6
+
7
+
8
+ api_key = os.environ.get('FEATHERLESS_API_KEY')
9
+ client = OpenAI(
10
+ base_url="https://api.featherless.ai/v1",
11
+ api_key=api_key
12
+ )
13
+
14
+ def respond(message, history, model):
15
+ history_openai_format = []
16
+ for human, assistant in history:
17
+ history_openai_format.append({"role": "user", "content": human })
18
+ history_openai_format.append({"role": "assistant", "content":assistant})
19
+ history_openai_format.append({"role": "user", "content": message})
20
+
21
+ response = client.chat.completions.create(
22
+ model=model,
23
+ messages= history_openai_format,
24
+ temperature=1.0,
25
+ stream=True,
26
+ max_tokens=2000
27
+ )
28
+
29
+ partial_message = ""
30
+ for chunk in response:
31
+ if chunk.choices[0].delta.content is not None:
32
+ partial_message = partial_message + chunk.choices[0].delta.content
33
+ yield partial_message
34
+
35
+ logo = open('./logo.svg').read()
36
+
37
+ with open('./model-cache.json', 'r') as f_model_cache:
38
+ model_cache = json.load(f_model_cache)
39
+
40
+ def build_model_choices():
41
+ all_choices = []
42
+ for model_class in model_cache:
43
+ all_choices += [ (f"{model_id} ({model_class})", model_id) for model_id in model_cache[model_class] ]
44
+
45
+ return all_choices
46
+
47
+ model_choices = build_model_choices()
48
+
49
+ def initial_model(referer=None):
50
+ print(f"initial_model({referer})")
51
+ if referer == 'http://127.0.0.1:7860/':
52
+ return 'Sao10K/L3-70B-Euryale-v2.1'
53
+ if referer and referer.startswith("https://huggingface.co/"):
54
+ possible_model = referer[23:]
55
+ full_model_list = functools.reduce(lambda x,y: x+y, model_cache.values(), [])
56
+ model_is_supported = possible_model in full_model_list
57
+ if model_is_supported:
58
+ return possible_model
59
+
60
+ return 'anakin87/yo-Llama-3-8B-Instruct'
61
+
62
+ title_text="HuggingFace's missing inference widget"
63
+ with gr.Blocks(title_text, css='.logo-mark { fill: #ffe184; }') as demo:
64
+ gr.HTML("""
65
+ <h1 align="center">HuggingFace's missing inference widget</h1>
66
+ <p align="center">
67
+ Test any <=15B LLM from the hub.
68
+ </p>
69
+ """)
70
+
71
+ # hidden_state = gr.State(value=initial_model)
72
+
73
+ model_selector = gr.Dropdown(
74
+ label="Model",
75
+ choices=build_model_choices(),
76
+ value=initial_model
77
+ # value=hidden_state
78
+ )
79
+
80
+ gr.ChatInterface(
81
+ respond,
82
+ additional_inputs=[model_selector],
83
+ head=""",
84
+ <script>console.log("Hello from gradio!")</script>
85
+ """,
86
+ )
87
+ gr.HTML(f"""
88
+ <p align="center">
89
+ Inference by <a href="https://featherless.ai">{logo}</a>
90
+ </p>
91
+ """)
92
+ def update_initial_model_choice(request: gr.Request):
93
+ return initial_model(request.headers.get('referer'))
94
+
95
+ demo.load(update_initial_model_choice, outputs=model_selector)
96
+
97
+ demo.launch()
model-cache.json ADDED
@@ -0,0 +1,1557 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "llama2-13b-4k": [
3
+ "Doctor-Shotgun/CalliopeDS-L2-13B",
4
+ "Gryphe/MythoMax-L2-13b",
5
+ "jondurbin/airoboros-l2-13b-2.1",
6
+ "jondurbin/airoboros-l2-13b-gpt4-2.0",
7
+ "jondurbin/airoboros-l2-13b-gpt4-m2.0",
8
+ "KoboldAI/LLaMA2-13B-Tiefighter",
9
+ "lmsys/vicuna-13b-v1.5",
10
+ "NousResearch/Nous-Hermes-Llama2-13b",
11
+ "Sao10K/Stheno-1.8-L2-13B",
12
+ "Undi95/ReMM-SLERP-L2-13B",
13
+ "Undi95/ReMM-v2.2-L2-13B",
14
+ "NousResearch/Llama-2-13b-hf",
15
+ "kingbri/airolima-chronos-grad-l2-13B",
16
+ "wei123602/Llama-2-13b-FINETUNE4_compare8k2",
17
+ "hexinran09/xr_dat_test_part2",
18
+ "42MARU/GenAI-llama2-ko-en-platypus-13B-v2",
19
+ "adonlee/LLaMA_2_13B_SFT_v0",
20
+ "AIdenU/LLAMA-2-13b-ko-Y24_v2.0",
21
+ "AIdenU/LLAMA-2-13b-ko-Y24-DPO_v2.1",
22
+ "allknowingroger/Platapus-Orca-13B",
23
+ "arnavgrg/llama-2-13b-chat-nf4-fp16-upscaled",
24
+ "Aspik101/StableBeluga-13B-instruct-PL-lora_unload",
25
+ "Aspik101/vicuna-13b-v1.5-PL-lora_unload",
26
+ "BlueNipples/TimeCrystal-l2-13B",
27
+ "bofenghuang/vigogne-2-13b-chat",
28
+ "ceadar-ie/FinanceConnect-13B",
29
+ "cepiloth/ko-en-llama2-13b-finetune",
30
+ "ContextualAI/archangel_sft-kto_llama13b",
31
+ "DaveGergern/13B-Psyfighter2-Erebus3-DareTies",
32
+ "dhmeltzer/Llama-2-13b-hf-ds_wiki_1024_full_r_64_alpha_16_merged",
33
+ "dhmeltzer/Llama-2-13b-hf-eli5-wiki-1024_r_64_alpha_16_merged",
34
+ "diffnamehard/Psyfighter2-Noromaid-ties-Capybara-13B",
35
+ "Doctor-Shotgun/CalliopeDS-v2-L2-13B",
36
+ "google/DiarizationLM-13b-Fisher-v1",
37
+ "Gryphe/MythoLogic-L2-13b",
38
+ "jjourney1125/llama2-13b-v1",
39
+ "h2oai/h2ogpt-16k-codellama-13b-python",
40
+ "haoranxu/ALMA-13B-R",
41
+ "jiwoochris/ko-llama2-v1",
42
+ "jiwoochris/ko-llama2-v2",
43
+ "jiwoochris/llama2_cot-13b-v2",
44
+ "jjaaaww/posi_13b",
45
+ "jondurbin/airoboros-l2-13b-2.2.1",
46
+ "KaeriJenti/ko-llama2-13b-OrcaPlatypus",
47
+ "kiyoonyoo/ko-platypus-13b-control",
48
+ "KoboldAI/LLaMA2-13B-TiefighterLR",
49
+ "kyujinpy/Korean-OpenOrca-13B",
50
+ "kyujinpy/Kosy-Platypus2-13B",
51
+ "kyujinpy/Kosy-platypus2-13B-v2",
52
+ "migtissera/Synthia-13B-v1.2",
53
+ "NeverSleep/Echidna-13b-v0.2",
54
+ "NeverSleep/Echidna-13b-v0.3",
55
+ "NeverSleep/Noromaid-13b-v0.3",
56
+ "NewstaR/Morningstar-13b-hf",
57
+ "NobodyExistsOnTheInternet/PuffedConvo13bLoraE4",
58
+ "openbmb/UltraLM-13b-v2.0",
59
+ "royallab/Pygmalion-2-13b-SuperCOT",
60
+ "sanghwa-na/llama2-13b.kor.v2",
61
+ "Sao10K/Chat-Stheno-L2-13B",
62
+ "Sao10K/Hesperus-v1-13B-L2-fp16",
63
+ "Sao10K/Stheno-Inverted-L2-13B",
64
+ "SicariusSicariiStuff/Tinybra_13B",
65
+ "speechlessai/speechless-llama2-dolphin-orca-platypus-13b",
66
+ "Undi95/Nete-13B",
67
+ "Undi95/OpenRP-13B",
68
+ "unsloth/llama-2-13b",
69
+ "wei123602/llama2-13b-fintune2",
70
+ "etri-xainlp/llama2-13b-lima-sft-dpo",
71
+ "FelixChao/llama2-13b-math1.2",
72
+ "Fredithefish/Guanaco-13B-Uncensored",
73
+ "GAI-LLM/ko-en-llama2-13b-mixed-v2",
74
+ "GAI-LLM/ko-en-llama2-13b-mixed-v5",
75
+ "HumanF-MarkrAI/pub-llama-13b-v1",
76
+ "hyunseoki/ko-en-llama2-13b",
77
+ "jiwoochris/ko-llama2-13b-n1",
78
+ "jiwoochris/ko-llama2-13b-v6",
79
+ "Sao10K/Stheno-1.2-L2-13B",
80
+ "TheBloke/CodeLlama-13B-Python-fp16",
81
+ "Undi95/Amethyst-13B",
82
+ "Undi95/CodeEngine",
83
+ "Undi95/CreativityEngine",
84
+ "Undi95/LewdEngine",
85
+ "Undi95/MLewd-Chat-v2-13B",
86
+ "Undi95/ReasoningEngine",
87
+ "Undi95/ReMM-L2-13B-PIPPA",
88
+ "Undi95/UtopiaXL-13B",
89
+ "wei123602/FINETUNE3_TEST4",
90
+ "wei123602/llama2-13b-fintune2-4E",
91
+ "Gryphe/MythoMix-L2-13b",
92
+ "NewstaR/Starlight-13B",
93
+ "jiwoochris/llama2_tmt-13b-v1",
94
+ "abacusai/Giraffe-13b-32k-v3",
95
+ "abhishek/autotrain-8kfjk-b3gva",
96
+ "adonlee/LLaMA_2_13B_SFT_v1",
97
+ "adonlee/LLaMA_2_13B_SFT_v1.5",
98
+ "AgentPublic/albertlight-7b",
99
+ "AIdenU/LLAMA-2-13b-ko-Y24-DPO_v0.1",
100
+ "AIdenU/LLAMA-2-13b-ko-Y24-DPO_v2.0",
101
+ "AIdenU/LLAMA-2-13b-koen-Y24_v1.0",
102
+ "allenai/tulu-2-dpo-13b",
103
+ "amphora/olaf-l.0.1",
104
+ "augtoma/qCammel-13",
105
+ "budecosystem/sql-millennials-13b",
106
+ "Byungchae/k2s3_test_0000",
107
+ "Byungchae/k2s3_test_0001",
108
+ "GAI-LLM/ko-en-llama2-13b-mixed-v3",
109
+ "HumanF-MarkrAI/pub-llama-13b-v2",
110
+ "hyunseoki/ko-ref-llama2-13b",
111
+ "HumanF-MarkrAI/pub-llama-13B-v3",
112
+ "AIFT/PACK-13b-v1.1",
113
+ "bofenghuang/vigogne-2-13b-instruct",
114
+ "cais/HarmBench-Llama-2-13b-cls",
115
+ "cepiloth/ko-en-llama2-13b-finetune-ex",
116
+ "Changgil/k2s3_test_24001",
117
+ "chickencaesar/llama2-platypus-llama2-chat-13B-hf",
118
+ "codellama/CodeLlama-13b-Python-hf",
119
+ "elyza/ELYZA-japanese-Llama-2-13b",
120
+ "etri-xainlp/llama2-12.8b_lora-dpo_v1",
121
+ "etri-xainlp/llama2-13b-sft-dpo",
122
+ "FPHam/Sydney_Overthinker_13b_HF",
123
+ "Ja-ck/llama-2-13b-instruct-Y24-v2",
124
+ "kyujinpy/Kosy-platypus2-13B-v5",
125
+ "Lajonbot/Llama-2-13b-hf-instruct-pl-lora_unload",
126
+ "OpenLLMAI/Llama-2-13b-sft-model-ocra-500k",
127
+ "OPI-PG/Qra-13b",
128
+ "pankajmathur/orca_mini_v3_13b",
129
+ "sanghwa-na/llama2-13b.kor",
130
+ "Sao10K/Stheno-L2-13B",
131
+ "StudentLLM/Alpagasus-2-13b-QLoRA-merged",
132
+ "The-Face-Of-Goonery/Huginn-13b-v1.2",
133
+ "Undi95/Emerald-13B",
134
+ "Undi95/MLewd-L2-13B",
135
+ "Undi95/MLewd-L2-Chat-13B",
136
+ "Undi95/MLewd-v2.4-13B",
137
+ "kiyoonyoo/ko-en-trans-platypus-13b",
138
+ "Undi95/MythoMax-L2-Kimiko-v2-13b",
139
+ "wei123602/llama-13b-FINETUNE3",
140
+ "wei123602/Llama-2-13b-FINETUNE4",
141
+ "wei123602/Llama-2-13b-FINETUNE4_TEST2",
142
+ "wei123602/Llama-2-13b-FINETUNE4_TEST3",
143
+ "wei123602/llama2-13b-FINETUNE3_TEST",
144
+ "yentinglin/Taiwan-LLM-13B-v2.0-chat",
145
+ "dhmeltzer/Llama-2-13b-hf-ds_eli5_1024_r_64_alpha_16_merged",
146
+ "elinas/chronos-13b-v2",
147
+ "elyza/ELYZA-japanese-Llama-2-13b-instruct",
148
+ "IkariDev/Athena-v3",
149
+ "Ja-ck/llama-2-13b-DPO-Y24-v2",
150
+ "Ja-ck/llama-2-13b-instruct-Y24-v1",
151
+ "jiwoochris/ko-llama2-13b-v4",
152
+ "jiwoochris/ko-llama2-13b-v5",
153
+ "jiwoochris/ko-llama2-v3",
154
+ "JunchengXie/Llama-2-13b-chat-hf-gpt-4-80k",
155
+ "jyoung105/KoR-Orca-Platypus-13B-neft",
156
+ "KaeriJenti/ko-llama2-13b-platypus",
157
+ "kingbri/chronolima-airo-grad-l2-13B",
158
+ "kiyoonyoo/ko-en-trans-platypus-13b-v2",
159
+ "KoboldAI/LLAMA2-13B-Holodeck-1",
160
+ "kyujinpy/Kosy-platypus2-13B-v3",
161
+ "kyujinpy/Kosy-platypus2-13B-v4",
162
+ "lgaalves/llama-2-13b-hf-platypus",
163
+ "lzw1008/Emollama-chat-13b",
164
+ "PocketDoc/Dans-RetroRodeo-13b",
165
+ "PygmalionAI/pygmalion-2-13b",
166
+ "Sao10K/Stheno-1.1-L2-13B",
167
+ "Secbone/llama-2-13B-instructed",
168
+ "wei123602/llama2-13b-FINETUNE3_TEST2",
169
+ "kunkun666/kunkun_dat_llama_13b_alpaca",
170
+ "chujiezheng/tulu-2-dpo-13b-ExPO",
171
+ "kyujinpy/ko-platypus-kiwi-13B",
172
+ "DopeorNope/COKAL-13b-v3",
173
+ "kyujinpy/KO-Platypus2-13B",
174
+ "kyujinpy/KoR-Orca-Platypus-13B",
175
+ "kyujinpy/KOR-Orca-Platypus-13B-v2",
176
+ "maximuslee07/llama-2-13b-rockwellautomation",
177
+ "migtissera/Synthia-13B",
178
+ "NeverSleep/Noromaid-13b-v0.1.1",
179
+ "kyujinpy/KOR-Orca-Platypus-13B-v3",
180
+ "nvidia/OpenMath-CodeLlama-13b-Python-hf",
181
+ "PocketDoc/Dans-MysteryModel-13b",
182
+ "PygmalionAI/mythalion-13b",
183
+ "Riiid/sheep-duck-llama-2-13b",
184
+ "kyujinpy/Korean-OpenOrca-13B-v2",
185
+ "kyujinpy/Korean-OpenOrca-v3",
186
+ "kyujinpy/KoT-platypus2-13B",
187
+ "Enno-Ai/ennodata-raw-pankajmathur-13b-peft",
188
+ "Lajonbot/vicuna-13b-v1.3-PL-lora_unload",
189
+ "etri-xainlp/llama2-13b-dpo-test",
190
+ "Expert68/llama2_13b_instructed_version2",
191
+ "Lajonbot/WizardLM-13B-V1.2-PL-lora_unload",
192
+ "GAI-LLM/ko-en-llama2-13b-mixed-v4",
193
+ "jiwoochris/llama2_tmt-13b-v2",
194
+ "kiyoonyoo/ko-en-trans-platypus-13b-v3",
195
+ "LeoLM/leo-hessianai-13b",
196
+ "KoboldAI/LLaMA2-13B-Erebus-v3",
197
+ "Sao10K/Stheno-1.3-L2-13B",
198
+ "sanghwa-na/llama2-13b.kor.v1",
199
+ "Sao10K/Stheno-Inverted-1.2-L2-13B",
200
+ "theNovaAI/Hypernova-experimental"
201
+ ],
202
+ "llama2-solar-10b7-4k": [
203
+ "NousResearch/Nous-Hermes-2-SOLAR-10.7B",
204
+ "Sao10K/Fimbulvetr-10.7B-v1",
205
+ "Sao10K/Fimbulvetr-11B-v2",
206
+ "upstage/SOLAR-10.7B-v1.0",
207
+ "12thD/I-SOLAR-10.7B-dpo-sft-v0.1",
208
+ "ABX-AI/Silver-Sun-11B",
209
+ "alnrg2arg/test_wanda_240109",
210
+ "Alsebay/model-test-3",
211
+ "Alsebay/model-test-4",
212
+ "Alsebay/Narisumashi-11B-v1.5",
213
+ "bhavinjawade/SOLAR-10B-OrcaDPO-Jawade",
214
+ "Chat-Error/Kimiko-10.7B-v3",
215
+ "chihoonlee10/T3Q-ko-solar-dpo-v1.0",
216
+ "chihoonlee10/T3Q-ko-solar-dpo-v5.0",
217
+ "chihoonlee10/T3Q-ko-solar-dpo-v7.0",
218
+ "chihoonlee10/T3Q-LLM-MG-DPO-v1.0",
219
+ "davidkim205/nox-solar-10.7b-v4",
220
+ "dddsaty/SOLAR_Merge_Adapter_DPO_Orca",
221
+ "dhanushreddy29/BrokenKeyboard",
222
+ "er1123090/T3Q_SOLAR_DARETIES_v1.0",
223
+ "er1123090/T3Q_SOLAR_SLERP_v1.0",
224
+ "etri-xainlp/SOLAR-10.7B-merge-dpo",
225
+ "FallenMerick/Chunky-Lemon-Cookie-11B",
226
+ "fblgit/UNA-POLAR-10.7B-InstructMath-v2",
227
+ "freewheelin/free-solar-evo-v0.13",
228
+ "genne/kiwi_solar_merge_slerp_test_v1",
229
+ "genne/kiwi_solar_merge_ties2_dpo",
230
+ "genne/nhn_dpo_v3_T3Q-ko-solar-dpo-v3.0_DPO",
231
+ "haes95/POLAR-10.7B-HES-DPO-v0.1",
232
+ "hyokwan/hkcode_solar_10.7b",
233
+ "ihopper/I-SOLAR-10.7B-dpo-sft-v1.0",
234
+ "jwkweon/CUBOX-SOLAR-DPO-v0.3",
235
+ "krevas/SOLAR-10.7B",
236
+ "kyujinpy/Sakura-SOLAR-Instruct-DPO-v2",
237
+ "kyujinpy/Sakura-SOLRCA-Math-Instruct-DPO-v2",
238
+ "martyn/solar-megamerge-dare-10.7b-v1",
239
+ "maywell/PiVoT-SOLAR-10.7B-RP",
240
+ "maywell/Synatra-10.7B-v0.4",
241
+ "maywell/Synatra-kiqu-10.7B",
242
+ "megastudyedu/M-SOLAR-10.7B-v1.3",
243
+ "migtissera/Synthia-v3.0-11B",
244
+ "migtissera/Tess-10.7B-v1.5",
245
+ "migtissera/Tess-10.7B-v1.5b",
246
+ "MNC-Jihun/Mistral-11B-Omni-OP-u1k-ver0.5",
247
+ "MNCJ1hun/MIstral-11B-Omni-OP-u1k-ver0.1",
248
+ "moondriller/anarchy-solar-10B-v1",
249
+ "nlpai-lab/KULLM3",
250
+ "NurtureAI/SOLAR-10.7B-v1.0-Instruct-16k",
251
+ "ppuuttyy/llm-project",
252
+ "PracticeLLM/SOLAR-tail-10.7B-instruct-v1.0",
253
+ "PracticeLLM/SOLAR-tail-10.7B-Merge-v1.0",
254
+ "pranavajay/hindi-8b",
255
+ "RefalMachine/ruadapt_solar_10.7_darulm_unigram_proj_init_part2_v1",
256
+ "RefalMachine/ruadapt_solar_10.7_part1",
257
+ "RefalMachine/ruadapt_solar_10.7_part2_v5_as1.5",
258
+ "T3Q-LLM/T3Q-LLM2-CP-v1.1",
259
+ "Sao10K/Sensualize-Solar-10.7B",
260
+ "sosoai/hansoldeco-SOLAR-10.7B",
261
+ "T3Q-LLM-Product/T3Q-LLM2-Solar-10.7B-v1.0",
262
+ "T3Q-LLM/T3Q-LLM2-sft1.0",
263
+ "T3Q-LLM/T3Q-LLM2-sft1.2",
264
+ "T3Q-LLM/T3Q-LLM2-sft1.3",
265
+ "T3Q-LLM/T3Q-LLM2-sft1.6",
266
+ "TheDrummer/Moistral-11B-v2",
267
+ "TheDrummer/Moistral-11B-v3",
268
+ "tlphams/solar-10.7b-merged-v0.1",
269
+ "Tokerss/testmoisfimu",
270
+ "TroyDoesAI/Mermaid_PythonCoder",
271
+ "TroyDoesAI/MermaidSolar",
272
+ "v000000/SyntheticMoist-11B",
273
+ "vicgalle/ConfigurableSOLAR-10.7B",
274
+ "w4r10ck/SOLAR-10.7B-Instruct-v1.0-uncensored",
275
+ "We-Want-GPU/SOLAR-10.7B-orca-alpaca-gpt4-lora-653",
276
+ "We-Want-GPU/SOLAR-10.7B-orca-alpaca-gpt4-math",
277
+ "Weyaxi/HelpSteer-filtered-Solar-Instruct",
278
+ "whjung/SOLAR-10.7B-instruct-v1.0",
279
+ "yuntaeyang/SOLAR-10.7B-Instructlora_sftt-v1.0",
280
+ "ClaudioItaly/Underground",
281
+ "decapoda-research/Antares-11b-v1",
282
+ "Deepnoid/deep-solar-Rev-v3.0.4",
283
+ "Edentns/DataVortexS-10.7B-dpo-v1.0",
284
+ "etri-xainlp/SOLAR-10.7B-merge-dpo_v1",
285
+ "freewheelin/free-solar-dpo-v0.3",
286
+ "Edentns/DataVortexS-10.7B-dpo-v1.12",
287
+ "KnutJaegersberg/Walter-SOLAR-11B",
288
+ "kyujinpy/SOLAR-Platypus-10.7B-v1",
289
+ "Edentns/DataVortexS-10.7B-dpo-v1.2",
290
+ "megastudyedu/M-SOLAR-10.7B-v1.4",
291
+ "patruff/chucklesFimbulvetrSFTmerged",
292
+ "Sao10K/Frostwind-10.7B-v1",
293
+ "sdhan/SD_SOLAR_10.7B_v1.0",
294
+ "spow12/kosolar_4.1_sft",
295
+ "ssaryssane/ssary-solar-10.7B",
296
+ "T3Q-LLM/T3Q-LLM2-MK-v1.0",
297
+ "T3Q-LLM/T3Q-LLM2-sft1.1",
298
+ "Tokerss/mergekit-linear-cnukgdw",
299
+ "ENERGY-DRINK-LOVE/SOLAR_merge",
300
+ "ENERGY-DRINK-LOVE/deepnoid_DPOv3",
301
+ "Yhyu13/LMCocktail-10.7B-v1-function-calling",
302
+ "12thD/I-SOLAR-10.7B-sft-v0.1",
303
+ "etri-xainlp/SOLAR-10.7B-sft-dpo-v1",
304
+ "AIdenU/SOLAR-10.7b-ko-Y24_v0.1",
305
+ "freewheelin/free-solar-evo-v0.1",
306
+ "byroneverson/Solar-10.7B-Instruct-v1.0-shell",
307
+ "gihong99/Myrrh_solar_10.7b_3.0",
308
+ "heavytail/kullm-solar",
309
+ "Byungchae/k2s3_test_0002",
310
+ "Changgil/K2S3-SOLAR-11b-v3.0",
311
+ "chihoonlee10/T3Q-ko-solar-dpo-v6.0",
312
+ "cockroach54/solar-sft-qlora",
313
+ "Edentns/DataVortexS-10.7B-dpo-v1.5",
314
+ "Himitsui/Kaiju-11B",
315
+ "ENERGY-DRINK-LOVE/nox_DPOv3",
316
+ "Himitsui/KuroMitsu-11B",
317
+ "hwkwon/S-SOLAR-10.7B-v1.4",
318
+ "ifuseok/sft-solar-10.7b-v1.1",
319
+ "kyujinpy/SOLAR-Platypus-10.7B-v2",
320
+ "hwkwon/S-SOLAR-10.7B-v1.5",
321
+ "leekanghoun1/llm_exercise",
322
+ "macadeliccc/SOLAR-10.7b-Instruct-truthy-dpo",
323
+ "mergekit-community/Synaptica",
324
+ "hyokwan/hkcode-solar-youtube-merged",
325
+ "MNC-LLM/Mistral-11B-Omni-OPA-u1k-ver0.7",
326
+ "MoaData/Myrrh_solar_10.7b_2.0",
327
+ "HyunCello/KULLM3-empathy-v1.0",
328
+ "nitky/Oumuamua-10.7b-alpha-RP",
329
+ "SangMoone/Saltware-solar-10.7b-v1.0",
330
+ "Sao10K/SOLAR-10.7B-NahIdWin",
331
+ "ifuseok/sft-solar-10.7b-v1",
332
+ "SkyOrbis/SKY-Ko-Solar-10.7B-lora",
333
+ "superiort/kullm3_100QA_10epochs",
334
+ "jwkweon/CUBOX-SOLAR-DPO-v0.2",
335
+ "T3Q-LLM/T3Q-LLM2-CV-v1.0",
336
+ "T3Q-LLM/T3Q-LLM2-FP-v2.0",
337
+ "megastudyedu/M-SOLAR-10.7B-v1.1-beta",
338
+ "T3Q-LLM/T3Q-LLM2-sft1.0-dpo1.0",
339
+ "T3Q-LLM/T3Q-LLM2-sft1.4",
340
+ "TroyDoesAI/Mermaid-Flow-MoE-Expert2",
341
+ "megastudyedu/M-SOLAR-10.7B-v1.2",
342
+ "upstage/SOLAR-10.7B-Instruct-v1.0",
343
+ "xellDart13/NebuIA-10.7B-DPO-v3",
344
+ "megastudyedu/M-SOLAR-10.7B-v1.3-dpo",
345
+ "Yhyu13/LMCocktail-10.7B-v1",
346
+ "YoungPanda/Dpomergebigboy",
347
+ "mergekit-community/Fimburs11V3",
348
+ "hchung1017/linear-merge",
349
+ "jjourney1125/M-SOLAR-10.7B-v1.0",
350
+ "Mihaiii/Bucharest-0.1",
351
+ "MNC-Jihun/Mistral-11B-OP-u1k-ver0.7",
352
+ "MNCJ1hun/MIstral-11B-Omni-OP-1k-2048-ver0.1",
353
+ "Changgil/K2S3-SOLAR-11b-v4.0",
354
+ "chihoonlee10/T3Q-ko-solar-dpo-v3.0",
355
+ "chihoonlee10/T3Q-ko-solar-sft-dpo-v1.0",
356
+ "MoaData/Myrrh_solar_10.7b_3.0",
357
+ "ENERGY-DRINK-LOVE/SOLAR_merge2",
358
+ "msu-rcc-lair/ruadapt_solar_10.7_darulm_unigram_proj_init_twostage_v1",
359
+ "mtc/upstage-SOLAR-10.7B-v1.0-classification-with-mixtral-explanation-3-epochs-finetuned",
360
+ "NurtureAI/SOLAR-10.7B-v1.0-base-16k",
361
+ "pinkyponky/SOLAR-10.7B-dpo-instruct-tuned-v0.1",
362
+ "Rama-adi/test-merge",
363
+ "Sao10K/Solstice-11B-v1",
364
+ "kyujinpy/Sakura-SOLRCA-Math-Instruct-DPO-v1",
365
+ "T3Q-LLM/T3Q-LLM2-FP-v1.0",
366
+ "TheDrummer/Moistral-11B-v4",
367
+ "TroyDoesAI/Mermaid-Coder-MoE-Expert1",
368
+ "12thD/I-SOLAR-10.7B-dpo-sft-v0.2",
369
+ "ABX-AI/Silver-Sun-v2-11B",
370
+ "AIdenU/SOLAR-10.7b-ko-Y24_v1.0",
371
+ "TroyDoesAI/Mermaid-Solar",
372
+ "v000000/SyntheticMoist-11B-v2",
373
+ "Alsebay/Narumashi-11B-v0.9",
374
+ "Alsebay/Narumashi-RT-11B",
375
+ "Alsebay/new-turn-1",
376
+ "YoungPanda/DPO_Test3",
377
+ "Alsebay/test-model",
378
+ "Alsebay/test-model-v2",
379
+ "CallComply/SOLAR-10.7B-Instruct-v1.0-128k",
380
+ "Cartinoe5930/SOLAR-10.7B-iDUS",
381
+ "YoungPanda/up",
382
+ "Cartinoe5930/SOLAR-10.7B-iDUS-1layer",
383
+ "Chan2chan1/solar_test_240517_16bit",
384
+ "kyujinpy/Sakura-SOLAR-Instruct",
385
+ "chihoonlee10/T3Q-ko-solar-dpo-v8.0",
386
+ "chihoonlee10/T3Q-LLM2-sft1.0-dpo1.0",
387
+ "davidkim205/nox-solar-10.7b-v2",
388
+ "dddsaty/SOLAR-Instruct-ko-Adapter-Attach",
389
+ "Deepnoid/deep-solar-Rev-v2.0.4",
390
+ "Deepnoid/deep-solar-v2.0.7",
391
+ "Edentns/DataVortexS-10.7B-dpo-v1.8",
392
+ "Edentns/DataVortexS-10.7B-v1.0",
393
+ "ENERGY-DRINK-LOVE/SOLAR_merge_DPOv3",
394
+ "Eric111/SOLAR-10.7B-Instruct-v1.0-DPO",
395
+ "fblgit/UNA-SOLAR-10.7B-Instruct-v1.0",
396
+ "fblgit/LUNA-SOLARkrautLM-Instruct",
397
+ "macadeliccc/SOLAR-10.7b-Instruct-dpo",
398
+ "fblgit/UNA-POLAR-10.7B-InstructMath-v1",
399
+ "Mihaiii/Bucharest-0.2",
400
+ "fearlessdots/Experimental_Orion-Nebula-10.7B-v0.1",
401
+ "freewheelin/free-solar-evo-v0.11",
402
+ "heavytail/kullm-solar-S",
403
+ "hkss/hk-SOLAR-10.7B-v1.4",
404
+ "ifuseok/ft-solar-10.7b-v2.1-dpo",
405
+ "ihopper/I-SOLAR-10.7B-sft-v1.0",
406
+ "kihoonlee/STOCK_SOLAR-10.7B",
407
+ "kyujinpy/Sakura-SOLRCA-Instruct-DPO",
408
+ "megastudyedu/M-SOLAR-10.7B-v1.4-dpo",
409
+ "NotoriousH2/peft-solar-10.7B-v1.0",
410
+ "rrw-x2/KoSOLAR-10.7B-v2.1",
411
+ "sosoai/hansoldeco-SOLAR-10.7B-DPO",
412
+ "T3Q-LLM/T3Q-LLM2-CV-v2.0",
413
+ "T3Q-LLM/T3Q-LLM2-sft1.5",
414
+ "VAGOsolutions/SauerkrautLM-SOLAR-Instruct",
415
+ "mergekit-community/mergekit-passthrough-lkwyfft"
416
+ ],
417
+ "llama3-15b-8k": [
418
+ "Frowning/L3-Nymeria-15B",
419
+ "Steelskull/L3-Aethora-15B",
420
+ "elinas/Llama-3-15B-Instruct-ft-v2",
421
+ "elinas/Llama-3-15B-Instruct-zeroed",
422
+ "elinas/Llama-3-15B-Instruct-zeroed-ft",
423
+ "Fischerboot/LLama3-Lexi-Aura-3Some-SLERP-SLERP-15B",
424
+ "Frowning/L3-Instruct-15B-SimPO-ExPO",
425
+ "TheSkullery/AbL3In-15B",
426
+ "wwe180/Llama3-15B-ShenNu-v0.1",
427
+ "ZeusLabs/L3-Aethora-15B-V2"
428
+ ],
429
+ "llama3-70b-8k": [
430
+ "aaditya/Llama3-OpenBioLLM-70B",
431
+ "abacusai/Llama-3-Giraffe-70B",
432
+ "abacusai/Llama-3-Giraffe-70B-Instruct",
433
+ "failspy/Meta-Llama-3-70B-Instruct-abliterated-v3.5",
434
+ "abacusai/Smaug-Llama-3-70B-Instruct",
435
+ "arcee-ai/Llama-3-SEC-Base",
436
+ "abhishek/autotrain-llama3-70b-math-v1",
437
+ "NeverSleep/Llama-3-Lumimaid-70B-v0.1-alt",
438
+ "failspy/Llama-3-70B-Instruct-abliterated-v3",
439
+ "gbueno86/Meta-LLama-3-Cat-A-LLama-70b",
440
+ "failspy/llama-3-70B-Instruct-abliterated",
441
+ "Dogge/llama-3-70B-uncensored",
442
+ "fireworks-ai/llama-3-firefunction-v2",
443
+ "gbueno86/Meta-LLama-3-Cat-Smaug-LLama-70b",
444
+ "casperhansen/llama-3-70b-fp16",
445
+ "chujiezheng/Smaug-Llama-3-70B-Instruct-ExPO",
446
+ "cloudyu/Meta-Llama-3-70B-Instruct-DPO",
447
+ "MaziyarPanahi/Llama-3-70B-Instruct-32k-v0.1",
448
+ "abacusai/Smaug-Llama-3-70B-Instruct-32K",
449
+ "failspy/Smaug-Llama-3-70B-Instruct-abliterated-v3",
450
+ "gradientai/Llama-3-70B-Instruct-Gradient-1048k",
451
+ "NousResearch/Hermes-2-Theta-Llama-3-70B",
452
+ "NousResearch/Meta-Llama-3-70B-Instruct",
453
+ "nvidia/Llama3-ChatQA-1.5-70B",
454
+ "meta-llama/Meta-Llama-3-70B-Instruct",
455
+ "Steelskull/L3-MS-Astoria-70b",
456
+ "NeverSleep/Llama-3-Lumimaid-70B-v0.1",
457
+ "jondurbin/airoboros-dpo-70b-3.3",
458
+ "maywell/Llama-3-70B-Instruct-32k",
459
+ "migtissera/Tess-2.0-Llama-3-70B",
460
+ "NeverSleep/Llama-3-Lumimaid-70B-v0.1-OAS",
461
+ "mmnga/Llama-3-70B-japanese-suzume-vector-v0.1",
462
+ "NousResearch/Hermes-2-Pro-Llama-3-70B",
463
+ "Orion-zhen/Llama3-70B-Orion-Chinese",
464
+ "ryzen88/Llama-3-70b-Arimas-story-RP-V2.0",
465
+ "shenzhi-wang/Llama3-70B-Chinese-Chat",
466
+ "tokyotech-llm/Llama-3-Swallow-70B-Instruct-v0.1",
467
+ "tokyotech-llm/Llama-3-Swallow-70B-v0.1",
468
+ "Sao10K/L3-70B-Euryale-v2.1",
469
+ "migtissera/Tess-2.0-Llama-3-70B-v0.2",
470
+ "tomekkorbak/introspection-test2",
471
+ "Undi95/Meta-Llama-3-70B-hf",
472
+ "v2ray/Llama-3-70B",
473
+ "v2ray/Llama-3-70B-Instruct",
474
+ "WendyHoang/Llama3-70B-RAG",
475
+ "crestf411/L3-70B-daybreak-abliterated-v0.4",
476
+ "gradientai/Llama-3-70B-Instruct-Gradient-262k",
477
+ "mirlab/AkaLlama-llama3-70b-v0.1",
478
+ "predibase/Meta-Llama-3-70B-Instruct-dequantized",
479
+ "sophosympatheia/New-Dawn-Llama-3-70B-32K-v1.0",
480
+ "tdrussell/Llama-3-70B-Instruct-Storywriter",
481
+ "tenyx/Llama3-TenyxChat-70B",
482
+ "Undi95/Meta-Llama-3-70B-Instruct-hf",
483
+ "VAGOsolutions/Llama-3-SauerkrautLM-70b-Instruct",
484
+ "xiangxinai/Xiangxin-2XL-Chat-1048k-Chinese-Llama3-70B",
485
+ "Envoid/L3-TenyxChat-Daybreak-Storywriter-RAE-70B",
486
+ "gradientai/Llama-3-70B-Instruct-Gradient-524k",
487
+ "NousResearch/Meta-Llama-3-70B",
488
+ "OpenBuddy/openbuddy-llama3-70b-v21.2-32k",
489
+ "theo77186/Llama-3-70B-Instruct-norefusal",
490
+ "jondurbin/airoboros-70b-3.3",
491
+ "crestf411/L3-70B-sunfall-abliterated-v0.2",
492
+ "predibase/Meta-Llama-3-70B-dequantized",
493
+ "scb10x/llama-3-typhoon-v1.5x-70b-instruct",
494
+ "crestf411/L3-70B-daybreak-storywriter-v0.4",
495
+ "Envoid/Llama-3-TenyxChat-DaybreakStorywriter-70B",
496
+ "jan-hq/Yakult-70B",
497
+ "migtissera/Llama-3-70B-Synthia-v3.5"
498
+ ],
499
+ "llama3-8b-8k": [
500
+ "12thD/ko-Llama-3-8B-sft-v0.1",
501
+ "12thD/ko-Llama-3-8B-sft-v0.3",
502
+ "922-CA/Llama-3-monika-ddlc-8b-v1",
503
+ "AI-Sweden-Models/Llama-3-8B",
504
+ "AI-Sweden-Models/Llama-3-8B-instruct",
505
+ "Alphacode-AI/Alphallama3-8B",
506
+ "Alphacode-AI/Alphallama3-8B_v2",
507
+ "Alsebay/L3-krai-test",
508
+ "Alsebay/L3-krai-test-2",
509
+ "Alsebay/L3-test-2",
510
+ "AwanLLM/Awanllm-Llama-3-8B-Cumulus-v0.2",
511
+ "AwanLLM/Awanllm-Llama-3-8B-Dolfin-v0.3",
512
+ "AwanLLM/Awanllm-Llama-3-8B-Dolfin-v0.5",
513
+ "AwanLLM/Awanllm-Llama-3-8B-Dolfin-v0.6-Abliterated",
514
+ "AwanLLM/Awanllm-Llama-3-8B-Instruct-DPO-v0.1",
515
+ "AwanLLM/Awanllm-Llama-3-8B-Instruct-DPO-v0.2",
516
+ "AwanLLM/Awanllm-Llama-3-8B-Instruct-ORPO-v0.1",
517
+ "AwanLLM/Llama-3-8B-Cumulus-v0.1",
518
+ "AwanLLM/Llama-3-8B-Dolfin-v0.2-Instruct",
519
+ "AwanLLM/Meta-Llama-3-8B-Instruct-Dolfin-v0.1",
520
+ "Azazelle/L3-RP_io",
521
+ "Azure99/blossom-v5-llama3-8b",
522
+ "BEE-spoke-data/Meta-Llama-3-8Bee",
523
+ "Brillibits/Instruct_Llama3_8B",
524
+ "ChaoticNeutrals/IQ_Test_l3_8B",
525
+ "ChaoticNeutrals/Poppy_Porpoise-v0.4-L3-8B",
526
+ "ChaoticNeutrals/Poppy_Porpoise-v0.7-L3-8B",
527
+ "ChenWeiLi/Med-ChimeraLlama-3-8B_SHERP",
528
+ "ChenWeiLi/MedLlama-3-8B_DARE",
529
+ "DBCMLAB/Llama-3-instruction-constructionsafety-layertuning",
530
+ "Dampfinchen/Llama-3-8B-Ultra-Instruct",
531
+ "Dampfinchen/Llama-3-8B-Ultra-Instruct-SaltSprinkle",
532
+ "Danielbrdz/Barcenas-Llama3-8b-ORPO",
533
+ "DeepMount00/Llama-3-8b-Ita",
534
+ "DiscoResearch/Llama3-DiscoLeo-Instruct-8B-v0.1",
535
+ "DiscoResearch/Llama3-German-8B",
536
+ "DiscoResearch/Llama3-German-8B-32k",
537
+ "DiscoResearch/Llama3_DiscoLM_German_8b_v0.1_experimental",
538
+ "Easy-Systems/easy-ko-Llama3-8b-Instruct-v1",
539
+ "Echelon-AI/medbotlm-v0.2",
540
+ "Edgerunners/Llama-3-8B-Instruct-ortho-baukit-toxic-n128-v3",
541
+ "Edgerunners/Llama-3-8B-Instruct-ortho-baukit-toxic-v2",
542
+ "Edgerunners/meta-llama-3-8b-instruct-hf-ortho-baukit-10fail-1000total",
543
+ "Edgerunners/meta-llama-3-8b-instruct-hf-ortho-baukit-2fail-128total",
544
+ "Edgerunners/meta-llama-3-8b-instruct-hf-ortho-baukit-34fail-3000total-bf16",
545
+ "Edgerunners/meta-llama-3-8b-instruct-hf-ortho-baukit-5fail-3000total-bf16",
546
+ "Edgerunners/meta-llama-3-8b-instruct-hf-ortho-baukit-5fail-500total",
547
+ "EnumaInc/llama-8b-ko-slimorca-45000",
548
+ "Fischerboot/mergekit-slerp-awrvish",
549
+ "FlagAlpha/Llama3-Chinese-8B-Instruct",
550
+ "GeorgiaTech/0.0_llama_nodpo_3iters_bs128_531lr_iter_1",
551
+ "Gryphe/Pantheon-RP-1.0-8b-Llama-3",
552
+ "HPAI-BSC/Llama3-Aloe-8B-Alpha",
553
+ "Hastagaras/Anjir-8B-L3",
554
+ "Hastagaras/Halu-8B-Llama3-Blackroot",
555
+ "Hastagaras/Halu-OAS-8B-Llama3",
556
+ "Hastagaras/Jamet-8B-L3-MK.V-Blackroot",
557
+ "HeshamHaroon/llama-3-instruct-slerp-arabic",
558
+ "Hinglish-Project/llama-3-8b-English-to-Hinglish",
559
+ "ISTA-DASLab/Meta-Llama-3-8B-Instruct",
560
+ "IlyaGusev/saiga_llama3_8b",
561
+ "Ino9/Llama-3-Open-Ko-8B-Instruct-preview_interview_140000",
562
+ "Jayant9928/tnayaj",
563
+ "Jayant9928/tnayajv2.0",
564
+ "KOCDIGITAL/Kocdigital-LLM-8b-v0.1",
565
+ "KeyonZeng/lion-llama3-8b",
566
+ "KingNish/KingNish-Llama3-8b",
567
+ "KnutJaegersberg/Llama-3-Deita-8b",
568
+ "Kukedlc/LLama-3-8b-Maths",
569
+ "Kukedlc/LLama-3-8b-Python",
570
+ "Kukedlc/NeuralLLaMa-3-8b-DT-v0.1",
571
+ "Kukedlc/NeuralMiLLaMa-8B-slerp",
572
+ "Kukedlc/Smart-LLaMa-3-8b-Python-v4",
573
+ "Kukedlc/Smart-LLama-3-8b-Python-v5",
574
+ "Kukedlc/SmartLlama-3-8B-MS-v0.1",
575
+ "Locutusque/Llama-3-Hercules-5.0-8B",
576
+ "Locutusque/Llama-3-Orca-1.0-8B",
577
+ "Locutusque/Llama-3-Orca-2.0-8B",
578
+ "Locutusque/llama-3-neural-chat-v1-8b",
579
+ "Locutusque/llama-3-neural-chat-v2.2-8B",
580
+ "MLP-KTLim/llama-3-Korean-Bllossom-8B",
581
+ "MaziyarPanahi/Llama-3-8B-Instruct-v0.4",
582
+ "MaziyarPanahi/Llama-3-8B-Instruct-v0.8",
583
+ "Metin/LLaMA-3-8B-Instruct-TR-DPO",
584
+ "MohamedRashad/Arabic-Orpo-Llama-3-8B-Instruct",
585
+ "Mr-Bhaskar/fbt-llama-8b-inst",
586
+ "Mr-Bhaskar/fbt-llama3-8b",
587
+ "Muhammad2003/Llama3-8B-OpenHermes-DPO",
588
+ "NLPark/Test1_SLIDE",
589
+ "NeuralNovel/Llama-3-NeuralPaca-8b",
590
+ "NeverSleep/Llama-3-Lumimaid-8B-v0.1",
591
+ "NeverSleep/Llama-3-Lumimaid-8B-v0.1-OAS",
592
+ "Nhoodie/Meta-Llama-3-8B-Uninstruct-function-calling-json-mode-model_stock-v0.1",
593
+ "Nhoodie/Meta-Llama-3-8b-Lexi-Uninstruct-function-calling-json-mode-Task-Arithmetic-v0.1",
594
+ "Nitral-AI/Hathor_Stable-v0.2-L3-8B",
595
+ "Nitral-AI/Poppy_Porpoise-0.72-L3-8B",
596
+ "Nitral-Archive/Poppy_Porpoise-L3-8B",
597
+ "NousResearch/Hermes-2-Theta-Llama-3-8B",
598
+ "NousResearch/Meta-Llama-3-8B",
599
+ "NousResearch/Meta-Llama-3-8B-Instruct",
600
+ "NurtureAI/Meta-Llama-3-8B-Instruct-32k",
601
+ "Omartificial-Intelligence-Space/al-baka-llama3-8b-experimental",
602
+ "OpenBuddy/openbuddy-llama3-8b-v21.1-8k",
603
+ "OpenPipe/Hermes-2-Theta-Llama-3-8B-32k",
604
+ "Orenguteng/Llama-3-8B-LexiFun-Uncensored-V1",
605
+ "OwenArli/Awanllm-Llama-3-8B-Dolfin-v0.6-Abliterated",
606
+ "OwenArli/Meta-Llama-3-8B-Instruct-Dolfin-v0.1",
607
+ "ParZiVal04/model",
608
+ "PathFinderKR/Waktaverse-Llama-3-KO-8B-Instruct",
609
+ "ProbeMedicalYonseiMAILab/medllama3-v20",
610
+ "RLHFlow/LLaMA3-SFT",
611
+ "RLHFlow/LLaMA3-iterative-DPO-final",
612
+ "RLHFlow/pair-preference-model-LLaMA3-8B",
613
+ "Remek/Llama-3-8B-Omnibus-1-PL-v01-INSTRUCT",
614
+ "ResplendentAI/Aura_L3_8B",
615
+ "ResplendentAI/Aura_Uncensored_l3_8B",
616
+ "ResplendentAI/Kei_Llama3_8B",
617
+ "ResplendentAI/SOVL_Llama3_8B",
618
+ "Rookie/Llama-3-8B-Instruct-Chinese",
619
+ "Sao10K/L3-8B-Lunaris-v1",
620
+ "Sao10K/L3-8B-Stheno-v3.1",
621
+ "Sao10K/L3-8B-Stheno-v3.2",
622
+ "Sao10K/L3-Run1",
623
+ "Sao10K/L3-Solana-8B-v1",
624
+ "SepKeyPro/Merged-OpenLlama3-8B",
625
+ "SweatyCrayfish/llama-3-8b-quantized",
626
+ "T3Q-LLM/T3Q-LLM3-NC-v1.0",
627
+ "TIGER-Lab/MAmmoTH2-8B-Plus",
628
+ "TheSkullery/llama-3-cat-8b-instruct-v1",
629
+ "TitleOS/EinsteinBagel-8B",
630
+ "Trelis/Meta-Llama-3-8B-Instruct-function-calling",
631
+ "TsinghuaC3I/Llama-3-8B-UltraMedical",
632
+ "UCLA-AGI/Llama-3-Instruct-8B-SPPO-Iter3",
633
+ "Undi95/Llama-3-LewdPlay-8B",
634
+ "Undi95/Llama-3-LewdPlay-8B-evo",
635
+ "Undi95/Llama-3-Unholy-8B",
636
+ "Undi95/Meta-Llama-3-8B-Instruct-hf",
637
+ "Undi95/Meta-Llama-3-8B-hf",
638
+ "UnicomLLM/Unichat-llama3-Chinese-8B",
639
+ "UnicomLLM/Unichat-llama3-Chinese-8B-28K",
640
+ "VAGOsolutions/Llama-3-SauerkrautLM-8b-Instruct",
641
+ "Walmart-the-bag/Llama-3-LizardCoder-8B",
642
+ "Weyaxi/Einstein-v6.1-LLama3-8B-Instruct-Ties",
643
+ "XavierSpycy/Meta-Llama-3-8B-Instruct-zh-10k",
644
+ "Zardos/A.I.Kant-Test_Llama-3-8B-Instruct_v0.1.0",
645
+ "Zardos/A.I.Kant-Test_Llama-3-8B-Instruct_v0.1.1",
646
+ "Zardos/nil_Llama-3-8B-Instruct_v0.1.0",
647
+ "Zardos/nil_Llama-3-8B-Instruct_v0.1.1",
648
+ "aaditya/Llama3-OpenBioLLM-8B",
649
+ "abacusai/Llama-3-Smaug-8B",
650
+ "abhinand/Llama-3-Galen-8B-32k-v1",
651
+ "abhinand/Llama-3-OpenBioMed-8B-dare-ties-v1.0",
652
+ "adalbertojunior/Llama-3-8B-Dolphin-Portuguese",
653
+ "adalbertojunior/Llama-3-8B-Dolphin-Portuguese-v0.2",
654
+ "adalbertojunior/Llama-3-8B-Dolphin-Portuguese-v0.3",
655
+ "adalbertojunior/Llama-3-8B-Instruct-Portuguese-v0.1",
656
+ "adalbertojunior/Llama-3-8B-Instruct-Portuguese-v0.3",
657
+ "adalbertojunior/Llama-3-8B-Instruct-Portuguese-v0.4",
658
+ "adamo1139/Llama-3-8B-AEZAKMI-run1",
659
+ "ajibawa-2023/Code-Llama-3-8B",
660
+ "ajibawa-2023/Scarlett-Llama-3-8B-v1.0",
661
+ "ajibawa-2023/SlimOrca-Llama-3-8B",
662
+ "ajibawa-2023/Uncensored-Frank-Llama-3-8B",
663
+ "alfredplpl/Llama-3-8B-Instruct-Ja",
664
+ "allganize/Llama-3-Alpha-Ko-8B-Instruct",
665
+ "allknowingroger/Llama3merge5",
666
+ "aloobun/CosmicBun-8B",
667
+ "anakin87/Llama-3-8b-ita-slerp",
668
+ "anakin87/Llama-3-8b-ita-ties",
669
+ "anakin87/Llama-3-8b-ita-ties-pro",
670
+ "astronomer/Llama-3-8B-Special-Tokens-Adjusted",
671
+ "bababababooey/llama-3-8b-instruct-toxic",
672
+ "beomi/Llama-3-KoEn-8B",
673
+ "beomi/Llama-3-KoEn-8B-Instruct-preview",
674
+ "beomi/Llama-3-Open-Ko-8B",
675
+ "beomi/Llama-3-Open-Ko-8B-Instruct-preview",
676
+ "birgermoell/llama-3-merge-disco-neural-pace",
677
+ "birgermoell/llama-3-open-hermes-disco",
678
+ "botbot-ai/CabraLlama3-8b",
679
+ "bunnycore/Blackbird-Llama-3-8B",
680
+ "bunnycore/LuminariX-8B",
681
+ "bunnycore/Maverick-8B",
682
+ "casperhansen/llama-3-8b-fp16",
683
+ "cgato/L3-TheSpice-8b-v0.1.3",
684
+ "cgato/L3-TheSpice-8b-v0.8.3",
685
+ "chlee10/T3Q-LLM3-Llama3-sft1.0-dpo1.0",
686
+ "chlee10/T3Q-Llama3-8B-Inst-sft1.0",
687
+ "chlee10/T3Q-Llama3-8B-dpo-v2.0",
688
+ "chlee10/T3Q-Llama3-8B-sft1.0-dpo1.0",
689
+ "chujiezheng/LLaMA3-iterative-DPO-final-ExPO",
690
+ "chujiezheng/Llama-3-Instruct-8B-SimPO-ExPO",
691
+ "cloudyu/Meta-Llama-3-8B-Instruct-DPO",
692
+ "cognitivecomputations/Llama-3-8B-Instruct-abliterated-v2",
693
+ "collaiborateorg/Collaiborator-MEDLLM-Llama-3-8B-v1",
694
+ "cookinai/LlamaReflect-8B-CoT-safetensors",
695
+ "cstr/llama3-8b-spaetzle-v13",
696
+ "cstr/llama3-8b-spaetzle-v20",
697
+ "cstr/llama3-8b-spaetzle-v33",
698
+ "cstr/llama3-8b-spaetzle-v37",
699
+ "d0rj/Llama-3-8B-saiga-suzume-ties",
700
+ "daneggertmoeller/CircularConstructionGPT-1",
701
+ "dannybess/llama8b-04-15-24-general-bf16",
702
+ "defog/llama-3-sqlcoder-8b",
703
+ "dreamgen/llama3-8b-instruct-align-test1-kto",
704
+ "dreamgen/llama3-8b-instruct-align-test2-kto",
705
+ "dreamgen/opus-v1.2-llama-3-8b",
706
+ "elyza/Llama-3-ELYZA-JP-8B",
707
+ "etri-xainlp/llama3-8b-dpo_v1",
708
+ "failspy/Llama-3-8B-Instruct-MopeyMule",
709
+ "failspy/Llama-3-8B-Instruct-abliterated",
710
+ "failspy/Meta-Llama-3-8B-Instruct-abliterated-v3",
711
+ "fiveflow/KoLlama-3-8B-Instruct",
712
+ "flammenai/Mahou-1.0-llama3-8B",
713
+ "flammenai/Mahou-1.1-llama3-8B",
714
+ "flammenai/Mahou-1.2-llama3-8B",
715
+ "flammenai/Mahou-1.2a-llama3-8B",
716
+ "freewheelin/free-llama3-dpo-v0.2",
717
+ "fxmeng/PiSSA-Llama-3-8B-r128",
718
+ "g-ronimo/llama3-8b-SlimHermes",
719
+ "gradientai/Llama-3-8B-Instruct-262k",
720
+ "gradientai/Llama-3-8B-Instruct-Gradient-1048k",
721
+ "gradientai/Llama-3-8B-Instruct-Gradient-4194k",
722
+ "grimjim/Llama-3-Instruct-demi-merge-8B",
723
+ "grimjim/Llama-3-Luminurse-v0.2-OAS-8B",
724
+ "grimjim/Llama-3-Oasis-v1-OAS-8B",
725
+ "grimjim/llama-3-merge-avalon-8B",
726
+ "grimjim/llama-3-merge-pp-instruct-8B",
727
+ "grimjim/llama-3-merge-virt-req-8B",
728
+ "haqishen/Llama-3-8B-Japanese-Instruct",
729
+ "hfl/llama-3-chinese-8b",
730
+ "hfl/llama-3-chinese-8b-instruct",
731
+ "hfl/llama-3-chinese-8b-instruct-v2",
732
+ "hfl/llama-3-chinese-8b-instruct-v3",
733
+ "hiieu/Meta-Llama-3-8B-Instruct-function-calling-json-mode",
734
+ "iRyanBell/ARC1",
735
+ "investbrainsorg/BrokenLlama-3-8b",
736
+ "jeiku/Average_Normie_l3_v1_8B",
737
+ "jeiku/Chaos_RP_l3_8B",
738
+ "jeiku/Orthocopter_8B",
739
+ "johnsnowlabs/JSL-Med-Sft-Llama-3-8B",
740
+ "johnsnowlabs/JSL-MedLlama-3-8B-v1.0",
741
+ "johnsnowlabs/JSL-MedLlama-3-8B-v2.0",
742
+ "johnsutor/mixture-of-llamas-dare-linear",
743
+ "johnsutor/mixture-of-llamas-dare-ties",
744
+ "johnsutor/mixture-of-llamas-ties",
745
+ "jondurbin/bagel-8b-v1.0",
746
+ "jpacifico/French-Alpaca-Llama3-8B-Instruct-v1.0",
747
+ "jsk0214/Seagull-llama-3-8B-orpo-v0.4",
748
+ "jsk0214/Seagull-llama-3-8B-orpo-v0.5",
749
+ "khKim/mytest",
750
+ "kimwooglae/WebSquareAI-Instruct-llama-3-8B-v0.5.39",
751
+ "kuotient/Meta-Llama-3-8B",
752
+ "kuotient/Meta-Llama-3-8B-Instruct",
753
+ "lainshower/Llama3-8b-alpaca",
754
+ "lcw99/llama-3-8b-it-kor-extented-chang",
755
+ "lemon07r/Llama-3-MahouDevil-8B",
756
+ "lightblue/suzume-llama-3-8B-japanese",
757
+ "lightblue/suzume-llama-3-8B-multilingual",
758
+ "lightblue/suzume-llama-3-8B-multilingual-orpo-borda-full",
759
+ "lightblue/suzume-llama-3-8B-multilingual-orpo-borda-half",
760
+ "lightblue/suzume-llama-3-8B-multilingual-orpo-borda-top25",
761
+ "lightblue/suzume-llama-3-8B-multilingual-orpo-borda-top75",
762
+ "lighteternal/Llama-3-8B-Instruct-MergeSLERP-Gradient1048k-OpenBioLLM",
763
+ "lighteternal/Llama3-merge-biomed-8b",
764
+ "lllyasviel/omost-llama-3-8b",
765
+ "lodrick-the-lafted/Fuselage-8B",
766
+ "lodrick-the-lafted/Kudzu-8B",
767
+ "lodrick-the-lafted/Olethros-8B",
768
+ "macadeliccc/Opus-Samantha-Llama-3-8B",
769
+ "maldv/Meta-Llama-3-8B-Instruct-hf",
770
+ "maldv/badger-l3-instruct-32k",
771
+ "maywell/Llama-3-Ko-8B-Instruct",
772
+ "mesolitica/llama-3-8b-8192-hf",
773
+ "mesolitica/malaysian-llama-3-8b-instruct-16k-post",
774
+ "meta-llama/Meta-Llama-3-8B-Instruct",
775
+ "migtissera/Llama-3-8B-Synthia-v3.5",
776
+ "migtissera/Tess-2.0-Llama-3-8B",
777
+ "mlabonne/ChimeraLlama-3-8B",
778
+ "mlabonne/ChimeraLlama-3-8B-v2",
779
+ "mlabonne/ChimeraLlama-3-8B-v3",
780
+ "mlabonne/Daredevil-8B",
781
+ "mlabonne/Daredevil-8B-abliterated",
782
+ "mlabonne/NeuralDaredevil-8B-abliterated",
783
+ "mlabonne/NeuralLlama-3-8B-Instruct-abliterated",
784
+ "mzbac/llama-3-8B-Instruct-function-calling-v0.2",
785
+ "namespace-Pt/Llama-3-8B-Instruct-80K-QLoRA-Merged",
786
+ "nbeerbower/KawaiiMahou-llama3-8B",
787
+ "nbeerbower/llama-3-bophades-v2-8B",
788
+ "nbeerbower/llama-3-bophades-v3-8B",
789
+ "nbeerbower/llama-3-dragonmaid-8B-v2",
790
+ "nbeerbower/llama-3-gutenberg-8B",
791
+ "nbeerbower/llama-3-sauce-v2-8B",
792
+ "nbeerbower/llama-3-slerp-kraut-dragon-8B",
793
+ "nbeerbower/llama-3-spicy-8B",
794
+ "nbeerbower/llama-3-spicy-abliterated-stella-8B",
795
+ "nbeerbower/llama-3-stella-8B",
796
+ "nbeerbower/llama-3-stella-truthy-dpo-8B",
797
+ "nbeerbower/llama-3-stinky-8B",
798
+ "nbeerbower/llama-3-stinky-v2-8B",
799
+ "nbeerbower/llama-3-wissenschaft-8B",
800
+ "nbeerbower/llama-3-wissenschaft-8B-v2",
801
+ "nbeerbower/llama3-KawaiiMahouSauce-8B",
802
+ "nk2t/Llama-3-8B-Instruct-japanese-nk2t-v0.3",
803
+ "openchat/openchat-3.6-8b-20240522",
804
+ "openlynn/Llama-3-Soliloquy-8B-v1",
805
+ "openlynn/Llama-3-Soliloquy-8B-v2",
806
+ "p208p2002/llama-3-zhtw-8B",
807
+ "predibase/Meta-Llama-3-8B-Instruct-dequantized",
808
+ "predibase/Meta-Llama-3-8B-dequantized",
809
+ "princeton-nlp/Llama-3-Base-8B-SFT",
810
+ "princeton-nlp/Llama-3-Instruct-8B-SimPO",
811
+ "raincandy-u/Llama-3-8b.UNLEASHED",
812
+ "refuelai/Llama-3-Refueled",
813
+ "rinna/llama-3-youko-8b",
814
+ "rmihaylov/Llama-3-DARE-v1-8B",
815
+ "rmihaylov/Llama-3-DARE-v2-8B",
816
+ "rmihaylov/Llama-3-DARE-v3-8B",
817
+ "rombodawg/Llama-3-8B-Instruct-Coder",
818
+ "rombodawg/test_dataset_Codellama-3-8B",
819
+ "ruslanmv/Medical-Llama3-8B",
820
+ "saishf/Aura-Uncensored-OAS-8B-L3",
821
+ "saishf/Merge-Mayhem-L3-V2.1",
822
+ "saishf/Neural-SOVLish-Devil-8B-L3",
823
+ "saishf/Ortho-SOVL-8B-L3",
824
+ "saishf/SOVL-Mega-Mash-L3-8B",
825
+ "saishf/SOVL-Mega-Mash-V2-L3-8B",
826
+ "saishf/SOVLish-Devil-8B-L3",
827
+ "saishf/SOVLish-Maid-L3-8B",
828
+ "scb10x/llama-3-typhoon-v1.5-8b",
829
+ "scb10x/llama-3-typhoon-v1.5-8b-instruct",
830
+ "scb10x/llama-3-typhoon-v1.5x-8b-instruct",
831
+ "seedboxai/Llama-3-KafkaLM-8B-v0.1",
832
+ "senseable/Trillama-8B",
833
+ "sethuiyer/Medichat-Llama3-8B",
834
+ "shanchen/llama3-8B-slerp-biomed-chat-chinese",
835
+ "shanchen/llama3-8B-slerp-med-262k",
836
+ "shanchen/llama3-8B-slerp-med-chinese",
837
+ "shenzhi-wang/Llama3-8B-Chinese-Chat",
838
+ "shyamieee/JARVIS-v1.0",
839
+ "spow12/Llama3_ko_4.2_sft",
840
+ "sumandas/llama3-openhermes-2.5",
841
+ "swap-uniba/LLaMAntino-3-ANITA-8B-Inst-DPO-ITA",
842
+ "tau-vision/sn6-finetune",
843
+ "theo77186/Llama-3-8B-Instruct-norefusal",
844
+ "timberrific/open-bio-med-merge",
845
+ "tokyotech-llm/Llama-3-Swallow-8B-Instruct-v0.1",
846
+ "tokyotech-llm/Llama-3-Swallow-8B-v0.1",
847
+ "turboderp/llama3-turbcat-instruct-8b",
848
+ "umarigan/LLama-3-8B-Instruction-tr",
849
+ "unsloth/llama-3-8b",
850
+ "unsloth/llama-3-8b-Instruct",
851
+ "uygarkurt/llama-3-merged-linear",
852
+ "uygarkurt/llama3s-merged-linear",
853
+ "vicgalle/Configurable-Llama-3-8B-v0.1",
854
+ "vicgalle/Configurable-Llama-3-8B-v0.2",
855
+ "vicgalle/Configurable-Llama-3-8B-v0.3",
856
+ "vicgalle/Roleplay-Llama-3-8B",
857
+ "vicgalle/Unsafe-Llama-3-8B",
858
+ "vimalnar/aware-ai-1st",
859
+ "vimalnar/aware-ai-2nd",
860
+ "werty1248/Llama-3-Ko-8B-Instruct-AOG",
861
+ "werty1248/Llama-3-Ko-8B-OpenOrca",
862
+ "winglian/Llama-3-8b-64k-PoSE",
863
+ "winninghealth/WiNGPT2-Llama-3-8B-Base",
864
+ "winninghealth/WiNGPT2-Llama-3-8B-Chat",
865
+ "yaojialzc/Gigi-Llama3-8B-Chinese-zh",
866
+ "yhavinga/Boreas-Llama-3-8B-chat-16k-checkpoint",
867
+ "ytu-ce-cosmos/Turkish-Llama-8b-v0.1",
868
+ "anakin87/yo-Llama-3-8B-Instruct"
869
+ ],
870
+ "mistral-v02-7b-std-lc": [
871
+ "AIdenU/Mistral-7B-v0.2-ko-Y24_v2.0",
872
+ "Abe13/full-juni-v0.1",
873
+ "AetherResearch/Cerebrum-1.0-7b",
874
+ "Alphacode-AI/AlphaMist7B-slr-v1",
875
+ "Alphacode-AI/AlphaMist7B-slr-v4-slow",
876
+ "Alphacode-AI/AlphaMist7B-slr-v4-slow2",
877
+ "AmberYifan/safe-spin-iter0",
878
+ "ArianAskari/SOLID-SFT-DPO-MixQV2-SOLIDChosen-SFTRejected-Zephyr-7b-beta",
879
+ "ArianAskari/SOLID-SFT-DPO-MixQV2-SOLIDRejected-SFTChosen-Zephyr-7b-beta",
880
+ "ArianAskari/SOLID-SFT-DPO-MixQV3-SOLIDChosen-SFTRejected-Zephyr-7b-beta",
881
+ "ArianAskari/SOLID-SFT-DPO-MixQV3-SOLIDRejected-SFTChosen-Zephyr-7b-beta",
882
+ "ArianAskari/SOLID-SFT-WoDPO-MixQV2-Zephyr-7b-beta",
883
+ "ArianAskari/SOLID_SFT-WoDPO-WoMixQ",
884
+ "AtAndDev/CapybaraMarcoroni-7B",
885
+ "Azure99/blossom-v3-mistral-7b",
886
+ "Azure99/blossom-v3_1-mistral-7b",
887
+ "Azure99/blossom-v4-mistral-7b",
888
+ "BM-K/mistral-7b-it-v1.7.0",
889
+ "BM-K/mistral-7b-it-v1.7.1",
890
+ "BM-K/mistral-ko-7b-it-v2.0.1",
891
+ "BM-K/stupid_model",
892
+ "BarraHome/Mistroll-7B-v2.2",
893
+ "BarraHome/zephyr-dpo-v2",
894
+ "BarryFutureman/NeuralTurdusVariant1-7B",
895
+ "BarryFutureman/WestLakeX-7B-EvoMerge",
896
+ "BarryFutureman/WestLakeX-7B-EvoMerge-Variant2",
897
+ "BarryFutureman/WildMarcoroni-Variant1-7B",
898
+ "BarryFutureman/WildMarcoroni-Variant3-7B",
899
+ "BarryFutureman/WildWest-Variant3-7B",
900
+ "BatsResearch/bonito-v1",
901
+ "Biomimicry-AI/ANIMA-Nectar-v2",
902
+ "BlouseJury/Mistral-7B-Discord-0.1",
903
+ "BlouseJury/Mistral-7B-Discord-0.2",
904
+ "BramVanroy/GEITje-7B-ultra",
905
+ "BramVanroy/GEITje-7B-ultra-sft",
906
+ "Cesco2004/TW3CESCO.V1",
907
+ "Cesco2004/TW3CESCO.V3",
908
+ "Cesco2004/TW3CESCO.V4",
909
+ "ChaoticNeutrals/Eris_Floramix_DPO_7B",
910
+ "ChaoticNeutrals/Eris_Remix_DPO_7B",
911
+ "ChaoticNeutrals/Nyanade_Stunna-Maid-7B-v0.2",
912
+ "ClaudioItaly/TopEvolutionWiz",
913
+ "CobraMamba/mamba-gpt-7b-v1",
914
+ "CobraMamba/mamba-gpt-7b-v2",
915
+ "CognitoLibera2/model_s9_7b_10",
916
+ "CognitoLibera2/model_s9_7b_13",
917
+ "Commencis/Commencis-LLM",
918
+ "Contamination/contaminated_proof_7b_v1.0",
919
+ "Contamination/contaminated_proof_7b_v1.0_safetensor",
920
+ "Corianas/Neural-Mistral-7B",
921
+ "CorticalStack/mistral-7b-alpaca-sft",
922
+ "CorticalStack/mistral-7b-distilabel-truthy-dpo",
923
+ "CorticalStack/mistral-7b-dolphin-sft",
924
+ "CorticalStack/mistral-7b-jondurbin-truthy-dpo",
925
+ "CorticalStack/mistral-7b-metamathqa-sft",
926
+ "CorticalStack/mistral-7b-openhermes-2.5-sft",
927
+ "CorticalStack/mistral-7b-openhermes-sft",
928
+ "CorticalStack/mistral-7b-tak-stack-dpo",
929
+ "CorticalStack/neurotic-crown-clown-7b-tak-stack-dpo",
930
+ "CorticalStack/pastiche-crown-clown-7b-dare-dpo",
931
+ "CultriX/NeuralTrix-7B-dpo",
932
+ "CultriX/Wernicke-7B-dpo",
933
+ "DUAL-GPO/zephyr-7b-gpo-final-i0",
934
+ "Danielbrdz/Barcenas-Mistral-7b",
935
+ "DeepMount00/Mistral-Ita-7b",
936
+ "DeepMount00/Mistral-RAG",
937
+ "DrNicefellow/Mistral-1-from-Mixtral-8x7B-v0.1",
938
+ "DrNicefellow/Mistral-4-from-Mixtral-8x7B-v0.1",
939
+ "DrNicefellow/Mistral-7-from-Mixtral-8x7B-v0.1",
940
+ "DrNicefellow/Mistral-8-from-Mixtral-8x7B-v0.1",
941
+ "DreadPoor/Harpy-7B-Model_Stock",
942
+ "DreadPoor/Satyr-7B-Model_Stock",
943
+ "Edentns/DataVortexM-7B-Instruct-v0.1",
944
+ "Epiculous/Fett-uccine-7B",
945
+ "Epiculous/Mika-7B",
946
+ "Eric111/CatunaLaserPi-DPO",
947
+ "Eric111/CatunaMayo-DPO",
948
+ "Eric111/UltraCatunaMayo-DPO",
949
+ "Eric111/Yarn-Mistral-7b-128k-DPO",
950
+ "FallenMerick/Smart-Lemon-Cookie-7B",
951
+ "FelixChao/Capricorn-7B-DPO",
952
+ "FelixChao/Faraday-7B",
953
+ "FelixChao/Patronum-7B",
954
+ "FelixChao/Scorpio-7B",
955
+ "FelixChao/Sectumsempra-7B-DPO",
956
+ "FelixChao/ShadowNeural-7B-v1",
957
+ "Fredithefish/OpenZephyrChat-v0.2",
958
+ "FredrikBL/SwedishBeagle-dare",
959
+ "Gille/StrangeMerges_48-7B-dare_ties",
960
+ "Gille/StrangeMerges_49-7B-dare_ties",
961
+ "Gille/StrangeMerges_50-7B-slerp",
962
+ "Gille/StrangeMerges_51-7B-dare_ties",
963
+ "Gille/StrangeMerges_52-7B-dare_ties",
964
+ "Gille/StrangeMerges_53-7B-model_stock",
965
+ "GritLM/GritLM-7B",
966
+ "GritLM/GritLM-7B-KTO",
967
+ "Gryphe/MythoMist-7b",
968
+ "Herry443/Mistral-7B-KNUT-ref",
969
+ "Herry443/Mistral-7B-KNUT-ref-ALL",
970
+ "Herry443/Mistral-7B-KNUT-ref-en",
971
+ "Herry443/Mistral-7B-KNUT-v0.1",
972
+ "Herry443/Mistral-7B-KNUT-v0.2",
973
+ "Herry443/Mistral-7B-KNUT-v0.3",
974
+ "Herry443/Mistral-7B-KNUT-v0.4",
975
+ "HikariLight/Mistral_ACI_Bench_SFT",
976
+ "HuggingFaceH4/mistral-7b-sft-beta",
977
+ "HuggingFaceH4/zephyr-7b-alpha",
978
+ "HuggingFaceH4/zephyr-7b-beta",
979
+ "InferenceIllusionist/Excalibur-7b-DPO",
980
+ "Intel/neural-chat-7b-v3-1",
981
+ "Intel/neural-chat-7b-v3-2",
982
+ "Intel/neural-chat-7b-v3-3",
983
+ "JJhooww/Mistral-7B-v0.2-Base_ptbr",
984
+ "JYKIM-AI/Mistral-7B-SFT",
985
+ "Ja-ck/Mistral-instruct-IPO-Y24-v1",
986
+ "Ja-ck/Mistral-instruct-Y24-DPO",
987
+ "Ja-ck/Mistral-instruct-Y24-v5",
988
+ "Kabster/BioMistral-MedicalQA-FT",
989
+ "KeyonZeng/lion-zephyr-7b",
990
+ "Kiddyz/testllm-c2",
991
+ "Knobi3/EvoMerge1",
992
+ "KnutJaegersberg/MistralInstructLongish",
993
+ "KnutJaegersberg/Walter-Mistral-7B",
994
+ "KnutJaegersberg/webMistral-7B",
995
+ "KoboldAI/Mistral-7B-Erebus-v3",
996
+ "KoboldAI/Mistral-7B-Holodeck-1",
997
+ "Kquant03/Hippolyta-7B-bf16",
998
+ "Kquant03/NeuralTrix-7B-dpo-laser",
999
+ "Kquant03/NeuralTrix-7B-dpo-relaser",
1000
+ "Kquant03/Samlagast-7B-laser-bf16",
1001
+ "Kukedlc/NeuTrixOmniBe-DPO",
1002
+ "Kukedlc/Neural-4-ARC-7b",
1003
+ "Kukedlc/Neural-4-Maths-7b",
1004
+ "Kukedlc/Neural-4-QA-7b",
1005
+ "Kukedlc/NeuralExperiment-7b-MagicCoder-v7.5",
1006
+ "Kukedlc/NeuralKrishna-7B-V2-DPO",
1007
+ "Kukedlc/NeuralMaths-Experiment-7b",
1008
+ "Kukedlc/NeuralSynthesis-7B-v0.1",
1009
+ "Kukedlc/NeuralSynthesis-7B-v0.2",
1010
+ "Kukedlc/NeuralSynthesis-7B-v0.3",
1011
+ "Kukedlc/NeuralSynthesis-7b-v0.4-slerp",
1012
+ "Kukedlc/Ramakrishna-7b-v3",
1013
+ "Lambent/threebird-7B",
1014
+ "LeoLM/leo-mistral-hessianai-7b",
1015
+ "LeroyDyer/LCARS_AI_StarTrek_Computer",
1016
+ "LeroyDyer/Mixtral_AI_CyberCoder",
1017
+ "LeroyDyer/Mixtral_AI_CyberTron",
1018
+ "LeroyDyer/Mixtral_AI_CyberTron_Ultra",
1019
+ "LeroyDyer/Mixtral_AI_Cyber_3.0",
1020
+ "LeroyDyer/Mixtral_AI_Cyber_4.0",
1021
+ "LeroyDyer/Mixtral_AI_Cyber_5.0",
1022
+ "LeroyDyer/Mixtral_AI_Cyber_Matrix_2_0",
1023
+ "LeroyDyer/Mixtral_AI_SwahiliTron_7b",
1024
+ "Liangmingxin/ThetaWave-7B-sft",
1025
+ "Local-Novel-LLM-project/Ninja-V2-7B",
1026
+ "Locutusque/ChatHercules-2.5-Mistral-7B-DPO",
1027
+ "Locutusque/Hercules-2.0-Mistral-7B",
1028
+ "Locutusque/Hercules-2.5-Mistral-7B",
1029
+ "Locutusque/Hercules-3.0-Mistral-7B",
1030
+ "Locutusque/Hercules-3.1-Mistral-7B",
1031
+ "Locutusque/Hyperion-1.5-Mistral-7B",
1032
+ "Locutusque/Hyperion-2.0-Mistral-7B",
1033
+ "Locutusque/Hyperion-2.1-Mistral-7B",
1034
+ "Locutusque/Hyperion-3.0-Mistral-7B-DPO",
1035
+ "Locutusque/Hyperion-3.0-Mistral-7B-alpha",
1036
+ "Locutusque/Mistral-7B-SFT",
1037
+ "Locutusque/NeuralHyperion-2.0-Mistral-7B",
1038
+ "Locutusque/NeuralHyperion-Medium-Preview",
1039
+ "Locutusque/OpenCerebrum-1.0-7b-DPO",
1040
+ "Locutusque/OpenCerebrum-1.0-7b-SFT",
1041
+ "Locutusque/OpenCerebrum-1.5-Mistral-7B-v0.2-beta",
1042
+ "Locutusque/OpenCerebrum-1.5-Mistral-7b-v0.2-alpha",
1043
+ "Locutusque/OpenCerebrum-2.0-7B",
1044
+ "Locutusque/hyperion-medium-preview",
1045
+ "Locutusque/lr-experiment1-7B",
1046
+ "Loyola/Mistral-7b-ITmodel",
1047
+ "MNCLLM/Mistral-7B-OP-over1k-grad0.3",
1048
+ "MNCLLM/Mistral-7B-OP-over1k-grad1.0",
1049
+ "MNCLLM/Mistral-7B-OP-over500-grad1.0",
1050
+ "MNCLLM/Mistral-7B-orca-platy-over1k",
1051
+ "MRAIRR/Navistral",
1052
+ "MRAIRR/Nextstage",
1053
+ "MTSAIR/multi_verse_model",
1054
+ "MaziyarPanahi/Calme-7B-Instruct-v0.1",
1055
+ "MaziyarPanahi/Calme-7B-Instruct-v0.9",
1056
+ "MaziyarPanahi/Experiment26Yamshadow_Ognoexperiment27Multi_verse_model",
1057
+ "MaziyarPanahi/MeliodasPercival_01_Experiment26T3q",
1058
+ "MaziyarPanahi/Mistral-7B-Instruct-v0.2",
1059
+ "MaziyarPanahi/YamshadowInex12_Experiment26T3q",
1060
+ "Mihaiii/Metis-0.3",
1061
+ "MiniMoog/Mergerix-7b-v0.1",
1062
+ "MiniMoog/Mergerix-7b-v0.2",
1063
+ "MiniMoog/Mergerix-7b-v0.3",
1064
+ "MiniMoog/Mergerix-7b-v0.4",
1065
+ "MiniMoog/Mergerix-7b-v0.5",
1066
+ "Minirecord/Mini_DPO_test02",
1067
+ "MoxoffSpA/Azzurro",
1068
+ "Muhammad2003/Myriad-7B-Slerp",
1069
+ "Muhammad2003/TriMistral-7B-MODELSTOCK",
1070
+ "Muhammad2003/TriMistral-7B-SLERP",
1071
+ "NExtNewChattingAI/shark_tank_ai_7_b",
1072
+ "NExtNewChattingAI/shark_tank_ai_7b_v2",
1073
+ "NTQAI/chatntq-ja-7b-v1.0",
1074
+ "NeuralNovel/Gecko-7B-v0.1",
1075
+ "NeuralNovel/Ignis-7B-DPO",
1076
+ "NeuralNovel/Ignis-7B-DPO-Laser",
1077
+ "NeuralNovel/Panda-7B-v0.1",
1078
+ "Nitral-AI/Eris_PrimeV4.20-Vision-32k-7B",
1079
+ "Nitral-AI/KukulStanta-7B",
1080
+ "Nitral-AI/Nyan-Stunna-7B",
1081
+ "Nitral-AI/Nyanade_Stunna-Maid-7B",
1082
+ "Nitral-AI/Stanta-Lelemon-Maid-7B",
1083
+ "Nitral-AI/Visual-LaylelemonMaidRP-7B",
1084
+ "Nondzu/Mistral-7B-code-16k-qlora",
1085
+ "Nondzu/Mistral-7B-codealpaca-lora",
1086
+ "Nondzu/zephyr-speakleash-007-pl-8192-32-16-0.05",
1087
+ "Nondzu/zephyr-speakleash-010-pl-3072-32-16-0.01",
1088
+ "NotAiLOL/Apollo-7B-0529-M-5",
1089
+ "NousResearch/Nous-Capybara-7B-V1.9",
1090
+ "NousResearch/Yarn-Mistral-7b-128k",
1091
+ "OpenLLM-Ro/RoMistral-7b-Instruct",
1092
+ "OpenSafetyLab/MD-Judge-v0.1",
1093
+ "P0x0/IceMerge-7b-32k",
1094
+ "PetroGPT/Severus-7B-DPO",
1095
+ "PetroGPT/WestSeverus-7B-DPO-v2",
1096
+ "PotatoB/MergeM-7B",
1097
+ "PotatoB/Mistral-offspring-1-3",
1098
+ "PotatoOff/HamSter-0.1",
1099
+ "PotatoOff/HamSter-0.2",
1100
+ "Ppoyaa/FusedKuno",
1101
+ "Ppoyaa/KunoichiVerse-7B",
1102
+ "Ppoyaa/LexiLumin-7B",
1103
+ "Ppoyaa/LuminRP-7B-128k-v0.2",
1104
+ "Ppoyaa/StarMonarch-7B",
1105
+ "QuantumIntelligence/QI-mistral-7B-slerp",
1106
+ "QuantumIntelligence/QI-neural-chat-7B-ko-DPO",
1107
+ "Radu1999/MisterUkrainianDPO",
1108
+ "Radu1999/Mistral-Instruct-Ukrainian-SFT",
1109
+ "RefalMachine/mistral_darulm_20_05_24_part1-2_32000_bpe_mean_init_03_07_24",
1110
+ "RefalMachine/ruadapt_mistral7b_full_vo_1e4",
1111
+ "ResplendentAI/Aura_v2_7B",
1112
+ "ResplendentAI/Datura_7B",
1113
+ "ResplendentAI/Flora_DPO_7B",
1114
+ "Rijgersberg/GEITje-7B",
1115
+ "SaisExperiments/Experiment-3",
1116
+ "Samee-ur/NeuralPipe-7B-slerp-DPO",
1117
+ "SanjiWatsuki/Kunoichi-DPO-7B",
1118
+ "SanjiWatsuki/Kunoichi-DPO-v2-7B",
1119
+ "Sao10K/Frostwind-v2.1-m7",
1120
+ "Sao10K/NyakuraV2.1-m7",
1121
+ "Sao10K/Shiki-m7",
1122
+ "Sao10K/Venomia-1.1-m7",
1123
+ "Sao10K/Venomia-m7",
1124
+ "Sao10K/Winterreise-m7",
1125
+ "Severian/ANIMA-Cognitive-Mistral-v1",
1126
+ "Severian/ANIMA-Phi-Neptune-Mistral-7B",
1127
+ "ShenaoZ/0.0001_withdpo_4iters_bs256_511lr_iter_2",
1128
+ "ShenaoZ/0.0005_withdpo_4iters_bs256_555lr_iter_3",
1129
+ "ShenaoZhang/0.001_idpo_iter_1",
1130
+ "ShenaoZhang/0.001_idpo_iter_2",
1131
+ "ShenaoZhang/0.001_idpo_noreplacerej_iter_1",
1132
+ "ShenaoZhang/0.001_idpo_noreplacerej_iter_2",
1133
+ "SherlockAssistant/Mistral-7B-Instruct-Ukrainian",
1134
+ "SicariusSicariiStuff/Zion_Alpha",
1135
+ "SicariusSicariiStuff/Zion_Alpha_Instruction_Tuned",
1136
+ "StatPan/SinGung7B-DPO-v0.1-12600c",
1137
+ "StatPan/SinGung7B-DPO-v0.1-2200",
1138
+ "StatPan/mistral7b-bartending-recipe-v1",
1139
+ "SuperAGI/SAM",
1140
+ "SuperPowerMz/SON_Mistral-7B-QLoRA-Peft",
1141
+ "Syed-Hasan-8503/Versatile-7B",
1142
+ "TIGER-Lab/MAmmoTH2-7B",
1143
+ "TIGER-Lab/MAmmoTH2-7B-Plus",
1144
+ "TeeZee/Buttocks-7B-v1.0",
1145
+ "TeeZee/Buttocks-7B-v1.1",
1146
+ "TitleOS/ExperimentTwo",
1147
+ "TrevorJS/mtg-mistral-7b-instruct-sft-merged",
1148
+ "UCLA-AGI/zephyr-7b-sft-full-SPIN-iter0",
1149
+ "UCLA-AGI/zephyr-7b-sft-full-SPIN-iter2",
1150
+ "UCLA-AGI/zephyr-7b-sft-full-SPIN-iter3",
1151
+ "VitalContribution/Evangelion-7B",
1152
+ "Vivacem/Mistral-7B-MMIQC",
1153
+ "WebraftAI/synapsellm-7b-mistral-v0.3-preview",
1154
+ "WebraftAI/synapsellm-7b-mistral-v0.4-preview2",
1155
+ "WebraftAI/synapsellm-7b-mistral-v0.4-preview3",
1156
+ "WebraftAI/synapsellm-7b-mistral-v0.5-preview",
1157
+ "WebraftAI/synapsellm-7b-mistral-v0.5-preview2",
1158
+ "Weni/WeniGPT-2.2.3-Zephyr-7B-merged-LLM_Base_2.0.3_SFT",
1159
+ "Weni/ZeroShot-3.3.34-Mistral-7b-Multilanguage-3.3.0-merged",
1160
+ "Weyaxi/CollectiveCognition-v1.1-Nebula-7B",
1161
+ "Weyaxi/Dolphin-Nebula-7B",
1162
+ "Weyaxi/HelpSteer-filtered-7B",
1163
+ "Weyaxi/HelpSteer-filtered-neural-chat-7b-v3-1-7B",
1164
+ "Weyaxi/Platypus-Nebula-v2-7B",
1165
+ "Weyaxi/Samantha-Nebula-7B",
1166
+ "Weyaxi/SynthIA-v1.3-Nebula-v2-7B",
1167
+ "Weyaxi/TekniumAiroboros-Nebula-7B",
1168
+ "Weyaxi/neural-chat-7b-v3-1-Nebula-v2-7B",
1169
+ "Weyaxi/test-help-steer-filtered-orig",
1170
+ "Weyaxi/zephyr-alpha-Nebula-v2-7B",
1171
+ "Weyaxi/zephyr-beta-Nebula-v2-7B",
1172
+ "WizardLMTeam/WizardMath-7B-V1.1",
1173
+ "Xenon1/Xenon-1",
1174
+ "Xenon1/Xenon-2",
1175
+ "Xenon1/Xenon-3",
1176
+ "Xenon1/Xenon-4",
1177
+ "Xenon1/Zenith-7B",
1178
+ "Xenon1/Zenith-7B-dpo",
1179
+ "Xenon1/Zenith-7B-dpo-v1",
1180
+ "Yhyu13/LMCocktail-Mistral-7B-v1",
1181
+ "YorkieOH10/MistralHermesPipe-7B-slerp",
1182
+ "Yuma42/KangalKhan-Alpha-Rubyroid-7B-Fixed",
1183
+ "Yuma42/KangalKhan-Alpha-Sapphiroid-7B-Fixed",
1184
+ "ZySec-AI/ZySec-7B",
1185
+ "abacusai/Slerp-CM-mist-dpo",
1186
+ "abhishek/autotrain-ixpiv-6kj1e",
1187
+ "abhishek/ccy0-2g7e-wqsa-0",
1188
+ "abhishek/op_zepcao10",
1189
+ "abhishek/zephyr-beta-math",
1190
+ "abhishekchohan/mistral-7B-forest-dpo",
1191
+ "abideen/Mistral-v2-orpo",
1192
+ "adamo1139/Mistral-7B-AEZAKMI-v1",
1193
+ "adonlee/Mistral_7B_SFT_DPO_v0",
1194
+ "aiplanet/buddhi-128k-chat-7b",
1195
+ "ajibawa-2023/Code-Mistral-7B",
1196
+ "ajibawa-2023/General-Stories-Mistral-7B",
1197
+ "ajibawa-2023/WikiHow-Mistral-Instruct-7B",
1198
+ "akjindal53244/Arithmo-Mistral-7B",
1199
+ "alignment-handbook/zephyr-7b-sft-full",
1200
+ "allknowingroger/CalmExperiment-7B-slerp",
1201
+ "allknowingroger/Calmesmol-7B-slerp",
1202
+ "allknowingroger/LimmyAutomerge-7B-slerp",
1203
+ "allknowingroger/M7merge-7B-slerp",
1204
+ "allknowingroger/MultiverseEx26-7B-slerp",
1205
+ "allknowingroger/NeuralDolphin-7B-slerp",
1206
+ "allknowingroger/NexusMistral2-7B-slerp",
1207
+ "allknowingroger/PrometheusLaser-7B-slerp",
1208
+ "allknowingroger/StarlingMaxLimmy2-7B-slerp",
1209
+ "allknowingroger/TripleMerge2-7B-Ties",
1210
+ "alnrg2arg/blockchainlabs_7B_merged_test2_4_prune",
1211
+ "aloobun/CosmicNoodle-7B",
1212
+ "aloobun/bun_mistral_7b_v2",
1213
+ "amazingvince/Not-WizardLM-2-7B",
1214
+ "amazon/MegaBeam-Mistral-7B-300k",
1215
+ "antiven0m/reverie-7b",
1216
+ "argilla/distilabeled-Marcoro14-7B-slerp-full",
1217
+ "argilla/notus-7b-v1",
1218
+ "arnavgrg/mistral-7b-instruct-nf4-fp16-upscaled",
1219
+ "arnavgrg/mistral-7b-nf4-fp16-upscaled",
1220
+ "arshadshk/Mistral-Hinglish-7B-Instruct-v0.2",
1221
+ "athirdpath/NSFW_DPO_Noromaid-7b",
1222
+ "augmxnt/shisa-gamma-7b-v1",
1223
+ "automerger/T3qm7xNeuralsirkrishna-7B",
1224
+ "awnr/Mistral-7B-v0.1-half-naive-A",
1225
+ "awnr/Mistral-7B-v0.1-signtensors-1-over-4",
1226
+ "bardsai/jaskier-7b-dpo",
1227
+ "bardsai/jaskier-7b-dpo-v5.6",
1228
+ "bardsai/jaskier-7b-dpo-v6.1",
1229
+ "bhenrym14/mistral-7b-platypus-fp16",
1230
+ "bofenghuang/vigostral-7b-chat",
1231
+ "bunnycore/Chimera-Apex-7B",
1232
+ "bunnycore/Mnemosyne-7B",
1233
+ "c1park/20240105_mistral-step50",
1234
+ "castorini/rank_zephyr_7b_v1_full",
1235
+ "cgato/Thespis-7b-v0.2-SFTTest-3Epoch",
1236
+ "cgato/Thespis-Krangled-7b-v2",
1237
+ "chanwit/flux-7b-v0.1",
1238
+ "chanwit/flux-7b-v0.2",
1239
+ "chargoddard/servile-harpsichord-cdpo",
1240
+ "chihoonlee10/T3Q-EN-DPO-Mistral-7B",
1241
+ "chihoonlee10/T3Q-Mistral-UB-DPO-v1.0",
1242
+ "chlee10/T3Q-Mistral-Orca-Math-dpo-v2.0",
1243
+ "chrischain/SatoshiNv5",
1244
+ "chujiezheng/zephyr_0.1",
1245
+ "cldersaienril/Instameta-Mistral-v0.1-7b",
1246
+ "cookinai/Bald-Eagle-7B",
1247
+ "cookinai/Blitz-v0.1",
1248
+ "cookinai/Blitz-v0.2",
1249
+ "cookinai/OpenCM-14",
1250
+ "cosmicvalor/mistral-orthogonalized",
1251
+ "crumb/apricot-wildflower-20",
1252
+ "cstr/Spaetzle-v60-7b",
1253
+ "cstr/Spaetzle-v69-7b",
1254
+ "cypienai/cymist2-v01-SFT",
1255
+ "danyoung/billie",
1256
+ "davidkim205/komt-mistral-7b-v1",
1257
+ "decem/Dionysus-Mistral-m3-v5",
1258
+ "decem/Dionysus-Mistral-m3-v6",
1259
+ "devhyun88/hyun-mistral-7b-orca-platypus-refine",
1260
+ "devhyun88/ku-mistral-7b-PGO-v1",
1261
+ "diffnamehard/Mistral-CatMacaroni-slerp-uncensored-7B",
1262
+ "dltjdgh0928/lsh_finetune_v0.11",
1263
+ "dltjdgh0928/mistral_open_orca_ko",
1264
+ "dreamgen/WizardLM-2-7B",
1265
+ "ekshat/zephyr_7b_q4_k_m",
1266
+ "eren23/OGNO-7b-dpo-truthful",
1267
+ "eren23/dpo-binarized-NeuralTrix-7B",
1268
+ "eren23/dpo-binarized-NeutrixOmnibe-7B",
1269
+ "eren23/ogno-monarch-jaskier-merge-7b-OH-PREF-DPO",
1270
+ "eren23/ogno-monarch-jaskier-merge-7b-OH-PREF-DPO-v2",
1271
+ "euclaise/Ferret_7B",
1272
+ "ewqr2130/mistral-inst-v02-dpo",
1273
+ "fblgit/juanako-7b-UNA",
1274
+ "fblgit/una-cybertron-7b-v1-fp16",
1275
+ "fblgit/una-cybertron-7b-v2-bf16",
1276
+ "fblgit/una-cybertron-7b-v3-OMA",
1277
+ "fearlessdots/WizardLM-2-7B-abliterated",
1278
+ "feeltheAGI/Maverick-Math-7B",
1279
+ "feeltheAGI/mistral-maths7B",
1280
+ "fhai50032/RP-Coder-SM3",
1281
+ "flammenai/Mahou-1.1-mistral-7B",
1282
+ "flammenai/Mahou-1.2a-mistral-7B",
1283
+ "flammenai/flammen18X-mistral-7B",
1284
+ "flammenai/flammen24-mistral-7B",
1285
+ "freeCS-dot-org/OpenAGI-testing-intelDPO-2",
1286
+ "freeCS-dot-org/OpenAGI-testing-truthyDPO-1",
1287
+ "freecs/ThetaWave-7B-v0.1",
1288
+ "freecs/ThetaWave-7B-v0.2",
1289
+ "ghost-x/ghost-7b-alpha",
1290
+ "ghost-x/ghost-7b-v0.9.0",
1291
+ "ghost-x/ghost-7b-v0.9.1",
1292
+ "giraffe176/WestLake_Noromaid_OpenHermes_neural-chatv0.1",
1293
+ "giux78/zefiro-7b-beta-ITA-v0.1",
1294
+ "giux78/zefiro-7b-dpo-qlora-ITA-v0.7",
1295
+ "giux78/zefiro-7b-sft-qlora-ITA-v0.5",
1296
+ "gordicaleksa/YugoGPT",
1297
+ "grimjim/kunoichi-lemon-royale-v2-32K-7B",
1298
+ "grimjim/kunoichi-lemon-royale-v3-32K-7B",
1299
+ "grimjim/zephyr-beta-wizardLM-2-merge-7B",
1300
+ "grimjim/zephyr-wizard-kuno-royale-BF16-merge-7B",
1301
+ "h2m/mhm-7b-v1.3-DPO-1",
1302
+ "h2oai/h2ogpt-gm-7b-mistral-chat-sft-dpo-rag-v1",
1303
+ "hamxea/Mistral-7B-v0.1-activity-fine-tuned-v2",
1304
+ "hamxea/Mistral-7B-v0.1-activity-fine-tuned-v5",
1305
+ "heavytail/kullm-mistral",
1306
+ "heavytail/kullm-mistral-S",
1307
+ "heegyu/Mistral-7B-v0.1-OKI-v20231124-1e-5",
1308
+ "heegyu/zephyr-7b-beta-KOR-OpenOrca-Platypus-1e-5",
1309
+ "hwanhe/Big_Minirecord02",
1310
+ "hwanhe/Mistral_sum_test01",
1311
+ "hwanhe/Mistral_test01",
1312
+ "hwanhe/Mistral_test02",
1313
+ "hwanhe/Mistral_test03",
1314
+ "hwanhe/Mistral_test04",
1315
+ "icefog72/IceCaffeLatteRP-7b",
1316
+ "icefog72/IceLatteRP-7b",
1317
+ "icefog72/IceLemonTeaRP-32k-7b",
1318
+ "icefog72/IceTeaRP-7b",
1319
+ "icefog72/WestIceLemonTeaRP-32k-7b",
1320
+ "ichigoberry/MonarchPipe-7B-slerp",
1321
+ "ichigoberry/pandafish-2-7b-32k",
1322
+ "ichigoberry/pandafish-7b",
1323
+ "ichigoberry/pandafish-dt-7b",
1324
+ "ignos/LeoScorpius-GreenNode-Alpaca-7B-v1",
1325
+ "ignos/LeoScorpius-GreenNode-Platypus-7B-v1",
1326
+ "ignos/Mistral-T5-7B-v1",
1327
+ "jambroz/FNCARLplus-7b",
1328
+ "jambroz/sixtyoneeighty-7b",
1329
+ "jambroz/sixtyoneeighty-7b-dpo",
1330
+ "jan-hq/stealth-v1.2",
1331
+ "jan-hq/stealth-v1.3",
1332
+ "jhflow/komt-mistral7b-kor-orca-lora",
1333
+ "johnsnowlabs/BioLing-7B-Dare",
1334
+ "jondurbin/airoboros-m-7b-3.1.2",
1335
+ "jondurbin/bagel-7b-v0.1",
1336
+ "jphme/em_german_leo_mistral",
1337
+ "jpquiroga/Mistral_7B_slerp_merge_instruct_open_orca",
1338
+ "kaist-ai/mistral-orpo-alpha",
1339
+ "kaist-ai/mistral-orpo-beta",
1340
+ "kaist-ai/mistral-orpo-capybara-7k",
1341
+ "kaitchup/Mayonnaise-4in1-01",
1342
+ "kaitchup/Mayonnaise-4in1-02",
1343
+ "kaitchup/Mayonnaise-4in1-022",
1344
+ "kaitchup/Mayonnaise-4in1-03",
1345
+ "kaitchup/TheMayonnaise",
1346
+ "kevin009/llamaRAGdrama",
1347
+ "kno10/ende-chat-0.0.4",
1348
+ "kowndinya23/flan2022-full-mistral-7b-lr-5e-6",
1349
+ "l3utterfly/mistral-7b-v0.1-layla-v1",
1350
+ "l3utterfly/mistral-7b-v0.1-layla-v2",
1351
+ "l3utterfly/mistral-7b-v0.1-layla-v3",
1352
+ "l3utterfly/mistral-7b-v0.1-layla-v4",
1353
+ "lex-hue/Delexa-7b",
1354
+ "lex-hue/Delexa-Instruct-V0.1-7b",
1355
+ "lex-hue/Delexa-V0.1-7b",
1356
+ "lgaalves/mistral-7b-platypus1k",
1357
+ "lgaalves/mistral-7b_open_platypus",
1358
+ "liuda1/Mistral-7B-golden",
1359
+ "liuda1/Mistral-7B-v0.2",
1360
+ "lodrick-the-lafted/Hermes-Instruct-7B-100K",
1361
+ "lodrick-the-lafted/Hermes-Instruct-7B-217K",
1362
+ "lodrick-the-lafted/Hermes-Instruct-7B-v0.2",
1363
+ "lodrick-the-lafted/Platyboros-Instruct-7B",
1364
+ "louisbrulenaudet/Maxine-7B-0401-stock",
1365
+ "lvkaokao/mistral-7b-finetuned-orca-dpo-v2",
1366
+ "macadeliccc/MBX-7B-v3-DPO",
1367
+ "macadeliccc/Monarch-7B-SFT",
1368
+ "macadeliccc/WestLake-7B-v2-laser-truthy-dpo",
1369
+ "madatnlp/mist-enko-lora-2950",
1370
+ "mahiatlinux/MasherAI-v6.1-7B-checkpoint2",
1371
+ "mahiatlinux/MasherAI-v6.1-7B-checkpoint3-code3",
1372
+ "maldv/dragonwar-7b-alpha",
1373
+ "maldv/winter-garden-7b-alpha",
1374
+ "maldv/winter-garden-7b-beta",
1375
+ "malhajar/Mistral-7B-v0.2-meditron-turkish",
1376
+ "martyn/mistral-megamerge-dare-7b",
1377
+ "mayacinka/Open-StaMis-v02-stock",
1378
+ "maywell/Synatra-7B-Instruct-v0.2",
1379
+ "maywell/Synatra-Zephyr-7B-v0.01",
1380
+ "maywell/Synatra-Zephyr-7B-v0.02",
1381
+ "maywell/synatra_V0.01",
1382
+ "megastudyedu/ME-dpo-7B-v1.0",
1383
+ "megastudyedu/ME-dpo-7B-v1.1",
1384
+ "mhenrichsen/hestenettetLM",
1385
+ "migtissera/SynthIA-7B-v1.3",
1386
+ "migtissera/SynthIA-7B-v1.5",
1387
+ "migtissera/SynthIA-7B-v2.0",
1388
+ "migtissera/Synthia-7B-v3.0",
1389
+ "migtissera/Tess-7B-v1.4",
1390
+ "migtissera/Tess-7B-v2.0",
1391
+ "migtissera/Tess-XS-v1.1",
1392
+ "mii-community/zefiro-7b-dpo-ITA",
1393
+ "mistral-community/Mistral-7B-v0.2",
1394
+ "mlabonne/AlphaMonarch-7B",
1395
+ "mlabonne/NeuralDaredevil-7B",
1396
+ "mlabonne/NeuralDarewin-7B",
1397
+ "mlabonne/NeuralMarcoro14-7B",
1398
+ "mlabonne/NeuralMonarch-7B",
1399
+ "mlabonne/UltraMerge-7B",
1400
+ "mlabonne/Zebrafish-7B",
1401
+ "mychen76/mistral7b_ocr_to_json_v1",
1402
+ "nasiruddin15/Mistral-dolphin-2.8-grok-instract-2-7B-slerp",
1403
+ "nasiruddin15/Neural-grok-dolphin-Mistral-7B",
1404
+ "nbeerbower/bophades-mistral-math-DPO-7B",
1405
+ "nbeerbower/bophades-mistral-truthy-DPO-7B",
1406
+ "nbeerbower/bophades-v2-mistral-7B",
1407
+ "neovalle/H4rmoniousBreeze",
1408
+ "notadib/Mistral-7B-Instruct-v0.2-attention-sparsity-10-v0.1",
1409
+ "notadib/Mistral-7B-Instruct-v0.2-attention-sparsity-30",
1410
+ "nvidia/OpenMath-Mistral-7B-v0.1-hf",
1411
+ "perlthoughts/Chupacabra-7B-v2",
1412
+ "perlthoughts/Chupacabra-7B-v2.01",
1413
+ "perlthoughts/Chupacabra-7B-v2.02",
1414
+ "perlthoughts/Chupacabra-7B-v2.04",
1415
+ "perlthoughts/Falkor-7b",
1416
+ "predibase/Mistral-7B-Instruct-v0.2-dequantized",
1417
+ "princeton-nlp/Mistral-7B-Base-SFT-DPO",
1418
+ "princeton-nlp/Mistral-7B-Base-SFT-SimPO",
1419
+ "proto-llm/uniwiz-7B-v0.1",
1420
+ "proto-llm/uniwiz-7B-v0.2",
1421
+ "quantumaikr/quantum-dpo-v0.1",
1422
+ "quantumaikr/quantum-v0.01",
1423
+ "realPCH/240104_mistral_lora",
1424
+ "refarde/Mistral-7B-Instruct-v0.2-Ko-S-Core",
1425
+ "rhaymison/Mistral-portuguese-luana-7b",
1426
+ "rishiraj/zephyr-math",
1427
+ "rmdhirr/Anthesis_7B",
1428
+ "royallab/ZephRP-m7b",
1429
+ "rwitz/dec10",
1430
+ "rwitz/experiment26-SPIN-iter-0",
1431
+ "rwitz/experiment26-truthy-iter-0",
1432
+ "rwitz/experiment26-truthy-iter-1",
1433
+ "rwitz/experiment26-truthy-iter-2",
1434
+ "rwitz/go-bruins",
1435
+ "rwitz/go-bruins-v2",
1436
+ "rwitz2/go-bruins-v2.1",
1437
+ "rwitz2/go-bruins-v2.1.1",
1438
+ "rwitz2/mergemix",
1439
+ "sarahlintang/mistral-indo-7b",
1440
+ "saucam/Arithmo-Wizard-2-7B",
1441
+ "senseable/WestLake-7B-v2",
1442
+ "senseable/Westlake-7B",
1443
+ "sfairXC/FsfairX-Zephyr-Chat-v0.1",
1444
+ "shitshow123/mistral7b_sft_dpo",
1445
+ "shleeeee/mistral-7b-ko-dpo-v1",
1446
+ "shleeeee/mistral-7b-wiki",
1447
+ "shleeeee/mistral-ko-7b-tech",
1448
+ "shleeeee/mistral-ko-7b-wiki-neft",
1449
+ "shleeeee/mistral-ko-OpenOrca-2000",
1450
+ "shleeeee/mistral-ko-OpenOrca-Platypus-v1",
1451
+ "shleeeee/mistral-ko-OpenOrca-Platypus-v2",
1452
+ "shleeeee/mistral-ko-OpenOrca-wiki-v1",
1453
+ "shleeeee/mistral-ko-exo-mrc-v1",
1454
+ "shleeeee/mistral-ko-exo-wiki-quiz-v1",
1455
+ "shleeeee/mistral-ko-tech-science-v1",
1456
+ "shyamieee/Maverick-v3.0",
1457
+ "silvercoder67/Mistral-7b-instruct-v0.2-summ-sft-e2m",
1458
+ "skfrost19/BioMistralMerged",
1459
+ "snorkelai/Snorkel-Mistral-PairRM-DPO",
1460
+ "soniox/Soniox-7B-v1.0",
1461
+ "speakleash/Bielik-7B-Instruct-v0.1",
1462
+ "speakleash/Bielik-7B-v0.1",
1463
+ "speechlessai/speechless-mistral-six-in-one-7b-orth-1.0",
1464
+ "stabilityai/japanese-stablelm-base-gamma-7b",
1465
+ "stabilityai/japanese-stablelm-instruct-gamma-7b",
1466
+ "statking/zephyr-7b-sft-full-orpo",
1467
+ "steve-cse/MelloGPT",
1468
+ "szymonrucinski/Curie-7B-v1",
1469
+ "timpal0l/Mistral-7B-v0.1-flashback-v2",
1470
+ "tlphams/zoyllm-7b-slimorca",
1471
+ "touqir/Cyrax-7B",
1472
+ "umiyuki/Umievo-itr012-Gleipnir-7B",
1473
+ "unsloth/mistral-7b",
1474
+ "unsloth/mistral-7b-v0.2",
1475
+ "uukuguy/CollectiveCognition-v1.1-Mistral-7B-dare-0.85",
1476
+ "uukuguy/SynthIA-7B-v1.3-dare-0.85",
1477
+ "uukuguy/airoboros-m-7b-3.1.2-dare-0.85",
1478
+ "uukuguy/mistral-7b-platypus-fp16-dare-0.9",
1479
+ "uukuguy/neural-chat-7b-v3-1-dare-0.85",
1480
+ "uukuguy/speechless-code-mistral-7b-v1.0",
1481
+ "uukuguy/speechless-code-mistral-7b-v2.0",
1482
+ "uukuguy/speechless-mistral-dolphin-orca-platypus-samantha-7b-dare-0.85",
1483
+ "uukuguy/speechless-mistral-hermes-code-7b",
1484
+ "uukuguy/speechless-mistral-moloras-7b",
1485
+ "uukuguy/speechless-mistral-six-in-one-7b-orth-1.0",
1486
+ "uukuguy/speechless-thoughts-mistral-7b",
1487
+ "uukuguy/speechless-thoughts-mistral-7b-v1.0",
1488
+ "uukuguy/zephyr-7b-alpha-dare-0.85",
1489
+ "varox34/Bio-Saul-Dolphin-Beagle-Breadcrumbs",
1490
+ "vicgalle/Configurable-Janus-7B",
1491
+ "vicgalle/Configurable-Mistral-7B",
1492
+ "vicgalle/zephyr-7b-truthy",
1493
+ "viethq188/LeoScorpius-7B-Chat-DPO",
1494
+ "viethq188/Rabbit-7B-DPO-Chat",
1495
+ "vihangd/smartyplats-7b-v1",
1496
+ "vihangd/smartyplats-7b-v2",
1497
+ "vikash06/mistral_v1",
1498
+ "vishnukv/WestSeverusJaskier-OpenOrca",
1499
+ "walebadr/Mistral-7B-v0.1-DPO",
1500
+ "wang7776/Mistral-7B-Instruct-v0.2-attention-sparsity-20",
1501
+ "wang7776/Mistral-7B-Instruct-v0.2-sparsity-10",
1502
+ "wang7776/Mistral-7B-Instruct-v0.2-sparsity-20-v0.1",
1503
+ "wang7776/Mistral-7B-Instruct-v0.2-sparsity-30-v0.1",
1504
+ "wkshin89/mistral-7b-instruct-ko-test-v0.1",
1505
+ "wkshin89/mistral-7b-instruct-ko-test-v0.2",
1506
+ "wons/mistral-7B-test-v0.2",
1507
+ "wons/mistral-7B-test-v0.3",
1508
+ "wons/mistral-7B-v0.1",
1509
+ "yam-peleg/Experiment15-7B",
1510
+ "yam-peleg/Experiment19-7B",
1511
+ "yam-peleg/Experiment21-7B",
1512
+ "yam-peleg/Experiment24-7B",
1513
+ "yam-peleg/Experiment25-7B",
1514
+ "yam-peleg/Experiment26-7B",
1515
+ "yam-peleg/Experiment27-7B",
1516
+ "yam-peleg/Experiment28-7B",
1517
+ "yam-peleg/Experiment29-7B",
1518
+ "yrju/ultra_llm_merged",
1519
+ "yweslakarep/huh-1",
1520
+ "ziniuli/Mistral-7B-ReMax-v0.1",
1521
+ "zmzmxz/NeuralPipe-7B-slerp",
1522
+ "ajibawa-2023/Young-Children-Storyteller-Mistral-7B",
1523
+ "alexsherstinsky/Mistral-7B-v0.1-sharded",
1524
+ "eren23/ogno-monarch-jaskier-merge-7b-OH-PREF-DPO-v3",
1525
+ "eren23/ogno-monarch-jaskier-merge-7b-OH-PREF-DPO-v4-test",
1526
+ "Kukedlc/NeuralKuke-4-All-7b",
1527
+ "louisgrc/Montebello_7B_SLERP",
1528
+ "maywell/Synatra-V0.1-7B-Instruct",
1529
+ "NousResearch/Yarn-Mistral-7b-64k",
1530
+ "Obrolin/Kesehatan-7B-v0.1",
1531
+ "hamxea/Mistral-7B-v0.1-activity-fine-tuned-v3",
1532
+ "Muhammad2003/TriMistral-7B-TIES",
1533
+ "bunnycore/Starling-dolphin-E26-7B",
1534
+ "akjindal53244/Mistral-7B-v0.1-Open-Platypus",
1535
+ "PetroGPT/WestSeverus-7B-DPO",
1536
+ "raidhon/coven_7b_128k_orpo_alpha",
1537
+ "SicariusSicariiStuff/Zion_Alpha_Instruction_Tuned_SLERP",
1538
+ "cgato/Thespis-CurtainCall-7b-v0.3",
1539
+ "chargoddard/loyal-piano-m7-cdpo",
1540
+ "ContextualAI/Contextual_KTO_Mistral_PairRM",
1541
+ "devhyun88/ku-mistral-7b-PGO-v2",
1542
+ "Norquinal/Mistral-7B-claude-chat",
1543
+ "Norquinal/Mistral-7B-claude-instruct"
1544
+ ],
1545
+ "qwen2-72b-lc": [
1546
+ "airev-ai/Jais-Inception-70b-V1.2",
1547
+ "cognitivecomputations/dolphin-2.9.2-qwen2-72b",
1548
+ "alpindale/magnum-72b-v1",
1549
+ "migtissera/Tess-v2.5.2-Qwen2-72B",
1550
+ "migtissera/Tess-v2.5-Qwen2-72B",
1551
+ "Qwen/Qwen2-72B-Instruct",
1552
+ "abacusai/Smaug-Qwen2-72B-Instruct",
1553
+ "Qwen/Qwen2-72B",
1554
+ "airev-ai/Jais-Inception-70b-V1.1",
1555
+ "Undi95/MG-FinalMix-72B"
1556
+ ]
1557
+ }
requirements.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ openai