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"