Spaces:
Running
Running
Commit
•
72a0f0f
1
Parent(s):
1308a4e
multi-search (#318)
Browse files- multiple search terms (9fffe66ec897eeadbd3840f18bf9174b8a86c38d)
Co-authored-by: Abhishek Thakur <abhishek@users.noreply.huggingface.co>
- app.py +33 -16
- models_backlinks.py +1309 -1
- src/display_models/get_model_metadata.py +2 -2
- src/display_models/modelcard_filter.py +3 -2
- src/display_models/read_results.py +1 -1
- src/load_from_hub.py +2 -1
- src/rate_limiting.py +0 -3
app.py
CHANGED
@@ -54,6 +54,7 @@ api = HfApi(token=H4_TOKEN)
|
|
54 |
def restart_space():
|
55 |
api.restart_space(repo_id="HuggingFaceH4/open_llm_leaderboard", token=H4_TOKEN)
|
56 |
|
|
|
57 |
# Rate limit variables
|
58 |
RATE_LIMIT_PERIOD = 7
|
59 |
RATE_LIMIT_QUOTA = 5
|
@@ -97,7 +98,7 @@ else:
|
|
97 |
eval_queue_private, eval_results_private = None, None
|
98 |
|
99 |
original_df = get_leaderboard_df(eval_results, eval_results_private, COLS, BENCHMARK_COLS)
|
100 |
-
models = original_df["model_name_for_query"].tolist()
|
101 |
|
102 |
to_be_dumped = f"models = {repr(models)}\n"
|
103 |
|
@@ -131,14 +132,16 @@ def add_new_eval(
|
|
131 |
error_msg = f"Organisation or user `{model.split('/')[0]}`"
|
132 |
error_msg += f"already has {num_models_submitted_in_period} model requests submitted to the leaderboard "
|
133 |
error_msg += f"in the last {RATE_LIMIT_PERIOD} days.\n"
|
134 |
-
error_msg +=
|
|
|
|
|
135 |
return styled_error(error_msg)
|
136 |
|
137 |
# Did the model authors forbid its submission to the leaderboard?
|
138 |
if model in DO_NOT_SUBMIT_MODELS or base_model in DO_NOT_SUBMIT_MODELS:
|
139 |
return styled_warning("Model authors have requested that their model be not submitted on the leaderboard.")
|
140 |
|
141 |
-
|
142 |
if revision == "":
|
143 |
revision = "main"
|
144 |
|
@@ -151,7 +154,7 @@ def add_new_eval(
|
|
151 |
model_on_hub, error = is_model_on_hub(model, revision)
|
152 |
if not model_on_hub:
|
153 |
return styled_error(f'Model "{model}" {error}')
|
154 |
-
|
155 |
# Were the model card and license filled?
|
156 |
modelcard_OK, error_msg = check_model_card(model)
|
157 |
if not modelcard_OK:
|
@@ -219,17 +222,35 @@ def change_tab(query_param: str):
|
|
219 |
|
220 |
|
221 |
# Searching and filtering
|
222 |
-
def update_table(
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
223 |
filtered_df = filter_models(hidden_df, type_query, size_query, precision_query, show_deleted)
|
|
|
224 |
if query != "":
|
225 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
226 |
df = select_columns(filtered_df, columns)
|
227 |
-
|
228 |
return df
|
229 |
|
|
|
230 |
def search_table(df: pd.DataFrame, query: str) -> pd.DataFrame:
|
231 |
return df[(df[AutoEvalColumn.dummy.name].str.contains(query, case=False))]
|
232 |
|
|
|
233 |
def select_columns(df: pd.DataFrame, columns: list) -> pd.DataFrame:
|
234 |
always_here_cols = [
|
235 |
AutoEvalColumn.model_type_symbol.name,
|
@@ -241,8 +262,9 @@ def select_columns(df: pd.DataFrame, columns: list) -> pd.DataFrame:
|
|
241 |
]
|
242 |
return filtered_df
|
243 |
|
|
|
244 |
NUMERIC_INTERVALS = {
|
245 |
-
"Unknown": pd.Interval(-1, 0, closed="right"),
|
246 |
"< 1.5B": pd.Interval(0, 1.5, closed="right"),
|
247 |
"~3B": pd.Interval(1.5, 5, closed="right"),
|
248 |
"~7B": pd.Interval(6, 11, closed="right"),
|
@@ -251,6 +273,7 @@ NUMERIC_INTERVALS = {
|
|
251 |
"60B+": pd.Interval(55, 10000, closed="right"),
|
252 |
}
|
253 |
|
|
|
254 |
def filter_models(
|
255 |
df: pd.DataFrame, type_query: list, size_query: list, precision_query: list, show_deleted: bool
|
256 |
) -> pd.DataFrame:
|
@@ -283,7 +306,7 @@ with demo:
|
|
283 |
with gr.Column():
|
284 |
with gr.Row():
|
285 |
search_bar = gr.Textbox(
|
286 |
-
placeholder=" 🔍 Search for your model and press ENTER...",
|
287 |
show_label=False,
|
288 |
elem_id="search-bar",
|
289 |
)
|
@@ -537,13 +560,7 @@ with demo:
|
|
537 |
|
538 |
with gr.Column():
|
539 |
precision = gr.Dropdown(
|
540 |
-
choices=[
|
541 |
-
"float16",
|
542 |
-
"bfloat16",
|
543 |
-
"8bit (LLM.int8)",
|
544 |
-
"4bit (QLoRA / FP4)",
|
545 |
-
"GPTQ"
|
546 |
-
],
|
547 |
label="Precision",
|
548 |
multiselect=False,
|
549 |
value="float16",
|
|
|
54 |
def restart_space():
|
55 |
api.restart_space(repo_id="HuggingFaceH4/open_llm_leaderboard", token=H4_TOKEN)
|
56 |
|
57 |
+
|
58 |
# Rate limit variables
|
59 |
RATE_LIMIT_PERIOD = 7
|
60 |
RATE_LIMIT_QUOTA = 5
|
|
|
98 |
eval_queue_private, eval_results_private = None, None
|
99 |
|
100 |
original_df = get_leaderboard_df(eval_results, eval_results_private, COLS, BENCHMARK_COLS)
|
101 |
+
models = original_df["model_name_for_query"].tolist() # needed for model backlinks in their to the leaderboard
|
102 |
|
103 |
to_be_dumped = f"models = {repr(models)}\n"
|
104 |
|
|
|
132 |
error_msg = f"Organisation or user `{model.split('/')[0]}`"
|
133 |
error_msg += f"already has {num_models_submitted_in_period} model requests submitted to the leaderboard "
|
134 |
error_msg += f"in the last {RATE_LIMIT_PERIOD} days.\n"
|
135 |
+
error_msg += (
|
136 |
+
"Please wait a couple of days before resubmitting, so that everybody can enjoy using the leaderboard 🤗
|
137 |
+
)"
|
138 |
return styled_error(error_msg)
|
139 |
|
140 |
# Did the model authors forbid its submission to the leaderboard?
|
141 |
if model in DO_NOT_SUBMIT_MODELS or base_model in DO_NOT_SUBMIT_MODELS:
|
142 |
return styled_warning("Model authors have requested that their model be not submitted on the leaderboard.")
|
143 |
|
144 |
+
# Does the model actually exist?
|
145 |
if revision == "":
|
146 |
revision = "main"
|
147 |
|
|
|
154 |
model_on_hub, error = is_model_on_hub(model, revision)
|
155 |
if not model_on_hub:
|
156 |
return styled_error(f'Model "{model}" {error}')
|
157 |
+
|
158 |
# Were the model card and license filled?
|
159 |
modelcard_OK, error_msg = check_model_card(model)
|
160 |
if not modelcard_OK:
|
|
|
222 |
|
223 |
|
224 |
# Searching and filtering
|
225 |
+
def update_table(
|
226 |
+
hidden_df: pd.DataFrame,
|
227 |
+
current_columns_df: pd.DataFrame,
|
228 |
+
columns: list,
|
229 |
+
type_query: list,
|
230 |
+
precision_query: str,
|
231 |
+
size_query: list,
|
232 |
+
show_deleted: bool,
|
233 |
+
query: str,
|
234 |
+
):
|
235 |
filtered_df = filter_models(hidden_df, type_query, size_query, precision_query, show_deleted)
|
236 |
+
final_df = []
|
237 |
if query != "":
|
238 |
+
queries = query.split(";")
|
239 |
+
for _q in queries:
|
240 |
+
if _q != "":
|
241 |
+
temp_filtered_df = search_table(filtered_df, _q)
|
242 |
+
if len(temp_filtered_df) > 0:
|
243 |
+
final_df.append(temp_filtered_df)
|
244 |
+
if len(final_df) > 0:
|
245 |
+
filtered_df = pd.concat(final_df).drop_duplicates()
|
246 |
df = select_columns(filtered_df, columns)
|
|
|
247 |
return df
|
248 |
|
249 |
+
|
250 |
def search_table(df: pd.DataFrame, query: str) -> pd.DataFrame:
|
251 |
return df[(df[AutoEvalColumn.dummy.name].str.contains(query, case=False))]
|
252 |
|
253 |
+
|
254 |
def select_columns(df: pd.DataFrame, columns: list) -> pd.DataFrame:
|
255 |
always_here_cols = [
|
256 |
AutoEvalColumn.model_type_symbol.name,
|
|
|
262 |
]
|
263 |
return filtered_df
|
264 |
|
265 |
+
|
266 |
NUMERIC_INTERVALS = {
|
267 |
+
"Unknown": pd.Interval(-1, 0, closed="right"),
|
268 |
"< 1.5B": pd.Interval(0, 1.5, closed="right"),
|
269 |
"~3B": pd.Interval(1.5, 5, closed="right"),
|
270 |
"~7B": pd.Interval(6, 11, closed="right"),
|
|
|
273 |
"60B+": pd.Interval(55, 10000, closed="right"),
|
274 |
}
|
275 |
|
276 |
+
|
277 |
def filter_models(
|
278 |
df: pd.DataFrame, type_query: list, size_query: list, precision_query: list, show_deleted: bool
|
279 |
) -> pd.DataFrame:
|
|
|
306 |
with gr.Column():
|
307 |
with gr.Row():
|
308 |
search_bar = gr.Textbox(
|
309 |
+
placeholder=" 🔍 Search for your model (separate multiple queries with `;`) and press ENTER...",
|
310 |
show_label=False,
|
311 |
elem_id="search-bar",
|
312 |
)
|
|
|
560 |
|
561 |
with gr.Column():
|
562 |
precision = gr.Dropdown(
|
563 |
+
choices=["float16", "bfloat16", "8bit (LLM.int8)", "4bit (QLoRA / FP4)", "GPTQ"],
|
|
|
|
|
|
|
|
|
|
|
|
|
564 |
label="Precision",
|
565 |
multiselect=False,
|
566 |
value="float16",
|
models_backlinks.py
CHANGED
@@ -1 +1,1309 @@
|
|
1 |
-
models = ['uni-tianyan/Uni-TianYan', 'fangloveskari/ORCA_LLaMA_70B_QLoRA', 'garage-bAInd/Platypus2-70B-instruct', 'upstage/Llama-2-70b-instruct-v2', 'fangloveskari/Platypus_QLoRA_LLaMA_70b', 'yeontaek/llama-2-70B-ensemble-v5', 'TheBloke/Genz-70b-GPTQ', 'TheBloke/Platypus2-70B-Instruct-GPTQ', 'psmathur/model_007', 'yeontaek/llama-2-70B-ensemble-v4', 'psmathur/orca_mini_v3_70b', 'ehartford/Samantha-1.11-70b', 'MayaPH/GodziLLa2-70B', 'psmathur/model_007_v2', 'chargoddard/MelangeA-70b', 'ehartford/Samantha-1.1-70b', 'psmathur/model_009', 'upstage/Llama-2-70b-instruct', 'yeontaek/llama-2-70B-ensemble-v7', 'yeontaek/llama-2-70B-ensemble-v6', 'chargoddard/MelangeB-70b', 'yeontaek/llama-2-70B-ensemble-v3', 'chargoddard/MelangeC-70b', 'garage-bAInd/Camel-Platypus2-70B', 'yeontaek/llama-2-70B-ensemble-v2', 'garage-bAInd/Camel-Platypus2-70B', 'migtissera/Synthia-70B-v1.2', 'v2ray/LLaMA-2-Wizard-70B-QLoRA', 'quantumaikr/llama-2-70b-fb16-orca-chat-10k', 'v2ray/LLaMA-2-Wizard-70B-QLoRA', 'stabilityai/StableBeluga2', 'quantumaikr/llama-2-70b-fb16-guanaco-1k', 'garage-bAInd/Camel-Platypus2-70B', 'migtissera/Synthia-70B-v1.1', 'migtissera/Synthia-70B', 'psmathur/model_101', 'augtoma/qCammel70', 'augtoma/qCammel-70', 'augtoma/qCammel-70v1', 'augtoma/qCammel-70x', 'augtoma/qCammel-70-x', 'jondurbin/airoboros-l2-70b-gpt4-1.4.1', 'dfurman/llama-2-70b-dolphin-peft', 'jondurbin/airoboros-l2-70b-2.1', 'TheBloke/llama-2-70b-Guanaco-QLoRA-fp16', 'quantumaikr/QuantumLM-llama2-70B-Korean-LoRA', 'quantumaikr/quantumairk-llama-2-70B-instruct', 'psmathur/model_420', 'psmathur/model_51', 'garage-bAInd/Camel-Platypus2-70B', 'TheBloke/Airoboros-L2-70B-2.1-GPTQ', 'OpenAssistant/llama2-70b-oasst-sft-v10', 'garage-bAInd/Platypus2-70B', 'liuxiang886/llama2-70B-qlora-gpt4', 'upstage/llama-65b-instruct', 'quantumaikr/llama-2-70b-fb16-korean', 'NousResearch/Nous-Hermes-Llama2-70b', 'v2ray/LLaMA-2-Jannie-70B-QLoRA', 'jondurbin/airoboros-l2-70b-gpt4-m2.0', 'jondurbin/airoboros-l2-70b-gpt4-m2.0', 'OpenAssistant/llama2-70b-oasst-sft-v10', 'yeontaek/llama-2-70B-ensemble-v8', 'jondurbin/airoboros-l2-70b-gpt4-2.0', 'jarradh/llama2_70b_chat_uncensored', 'WizardLM/WizardMath-70B-V1.0', 'jordiclive/Llama-2-70b-oasst-1-200', 'WizardLM/WizardMath-70B-V1.0', 'jondurbin/airoboros-l2-70b-gpt4-2.0', 'OpenLemur/lemur-70b-chat-v1', 'tiiuae/falcon-180B', 'tiiuae/falcon-180B', 'stabilityai/StableBeluga1-Delta', 'psmathur/model_42_70b', 'psmathur/test_42_70b', 'TheBloke/fiction.live-Kimiko-V2-70B-fp16', 'tiiuae/falcon-180B', 'WizardLM/WizardMath-70B-V1.0', 'tiiuae/falcon-180B-chat', 'jondurbin/airoboros-l2-70b-gpt4-2.0', 'ehartford/samantha-1.1-llama-33b', 'ajibawa-2023/scarlett-33b', 'ddobokki/Llama-2-70b-orca-200k', 'TheBloke/gpt4-alpaca-lora_mlp-65B-HF', 'tiiuae/falcon-180B-chat', 'tiiuae/falcon-180B-chat', 'tiiuae/falcon-180B', 'TheBloke/Lemur-70B-Chat-v1-GPTQ', 'NousResearch/Nous-Puffin-70B', 'WizardLM/WizardLM-70B-V1.0', 'WizardLM/WizardMath-70B-V1.0', 'meta-llama/Llama-2-70b-hf', 'TheBloke/Llama-2-70B-fp16', 'Weyaxi/llama-2-alpacagpt4-1000step', 'WizardLM/WizardLM-70B-V1.0', 'simsim314/WizardLM-70B-V1.0-HF', 'simsim314/WizardLM-70B-V1.0-HF', 'WizardLM/WizardLM-70B-V1.0', 'openbmb/UltraLM-65b', 'psmathur/model_420_preview', 'WizardLM/WizardLM-70B-V1.0', 'simsim314/WizardLM-70B-V1.0-HF', 'OpenBuddy/openbuddy-llama2-70b-v10.1-bf16', 'upstage/llama-30b-instruct-2048', 'jondurbin/airoboros-65b-gpt4-1.2', 'TheBloke/guanaco-65B-HF', 'jondurbin/airoboros-65b-gpt4-1.3', 'meta-llama/Llama-2-70b-chat-hf', 'ValiantLabs/ShiningValiant', 'Faradaylab/Aria-70B', 'lilloukas/GPlatty-30B', 'TheBloke/VicUnlocked-alpaca-65B-QLoRA-fp16', 'jondurbin/airoboros-65b-gpt4-1.4-peft', 'jondurbin/airoboros-65b-gpt4-1.4', 'jondurbin/airoboros-65b-gpt4-2.0', 'TheBloke/WizardLM-70B-V1.0-GPTQ', 'TheBloke/WizardLM-70B-V1.0-GPTQ', 'ariellee/SuperPlatty-30B', 'jondurbin/airoboros-65b-gpt4-1.4', 'jondurbin/airoboros-65b-gpt4-2.0', 'yeontaek/llama-2-70b-IA3-guanaco', 'CalderaAI/30B-Lazarus', 'Aspik101/trurl-2-13b-pl-instruct_unload', 'ehartford/WizardLM-33B-V1.0-Uncensored', 'ehartford/WizardLM-33B-V1.0-Uncensored', 'OpenBuddy/openbuddy-llama-65b-v8-bf16', 'Aspik101/llama-30b-instruct-2048-PL-lora', 'h2oai/h2ogpt-research-oasst1-llama-65b', 'Aspik101/llama-30b-instruct-2048-PL-lora', 'CalderaAI/30B-Epsilon', 'Aspik101/llama-30b-2048-instruct-PL-lora_unload', 'jondurbin/airoboros-65b-gpt4-m2.0', 'jondurbin/airoboros-65b-gpt4-m2.0', 'Aeala/Alpaca-elina-65b', 'TheBloke/robin-65b-v2-fp16', 'TheBloke/gpt4-alpaca-lora-30b-HF', 'TheBloke/Llama-2-70B-chat-GPTQ', 'upstage/llama-30b-instruct', 'OpenLemur/lemur-70b-v1', 'lmsys/vicuna-33b-v1.3', 'ausboss/llama-30b-supercot', 'ai-business/Luban-13B', 'Henk717/airochronos-33B', 'lmsys/vicuna-33b-v1.3', 'Henk717/airochronos-33B', 'bavest/fin-llama-33b-merged', 'jondurbin/airoboros-33b-gpt4-1.4', 'YeungNLP/firefly-llama-30b', 'Aspik101/30B-Lazarus-instruct-PL-lora_unload', 'uukuguy/speechless-llama2-luban-orca-platypus-13b', 'xxyyy123/test_merge_p_ov1_w0.66_w0.5_n1', 'jondurbin/airoboros-33b-gpt4-1.2', 'TheBloke/alpaca-lora-65B-HF', 'bofenghuang/vigogne-33b-instruct', 'yeontaek/llama-2-13B-ensemble-v5', 'garage-bAInd/Platypus-30B', 'Open-Orca/OpenOrca-Platypus2-13B', 'kajdun/viwaai-30b_v4', 'lilloukas/Platypus-30B', 'Open-Orca/OpenOrca-Platypus2-13B', 'Henk717/chronoboros-33B', 'jondurbin/airoboros-33b-2.1', 'HiTZ/alpaca-lora-65b-en-pt-es-ca', 'quantumaikr/QuantumLM-70B-hf', 'uukuguy/speechless-llama2-13b', 'uukuguy/speechless-llama2-hermes-orca-platypus-13b', 'openaccess-ai-collective/manticore-30b-chat-pyg-alpha', 'LLMs/WizardLM-30B-V1.0', 'TheBloke/WizardLM-30B-fp16', 'openaccess-ai-collective/hippogriff-30b-chat', 'concedo/Vicuzard-30B-Uncensored', 'TFLai/OpenOrca-Platypus2-13B-QLoRA-0.80-epoch', 'huggingface/llama-65b', 'huggyllama/llama-65b', 'gaodrew/gaodrew-llama-30b-instruct-2048-Open-Platypus-100steps', 'uukuguy/speechless-llama2-hermes-orca-platypus-wizardlm-13b', 'Sao10K/Mythical-Destroyer-V2-L2-13B', 'camel-ai/CAMEL-33B-Combined-Data', 'dsvv-cair/alpaca-cleaned-llama-30b-bf16', 'MetaIX/GPT4-X-Alpasta-30b', 'garage-bAInd/Stable-Platypus2-13B', 'TFLai/Luban-Platypus2-13B-QLora-0.80-epoch', 'TheBloke/OpenOrca-Platypus2-13B-GPTQ', 'IkariDev/Athena-tmp', 'OpenBuddyEA/openbuddy-llama-30b-v7.1-bf16', 'OpenBuddyEA/openbuddy-llama-30b-v7.1-bf16', 'Open-Orca/OpenOrcaxOpenChat-Preview2-13B', 'psmathur/model_007_13b_v2', 'Aspik101/Vicuzard-30B-Uncensored-instruct-PL-lora_unload', 'jondurbin/airoboros-33b-gpt4-m2.0', 'Sao10K/Mythical-Destroyer-L2-13B', 'TheBloke/Wizard-Vicuna-30B-Uncensored-fp16', 'ehartford/Wizard-Vicuna-30B-Uncensored', 'TFLai/Nova-13B', 'TheBloke/robin-33B-v2-fp16', 'totally-not-an-llm/PuddleJumper-13b', 'Aeala/VicUnlocked-alpaca-30b', 'Yhyu13/oasst-rlhf-2-llama-30b-7k-steps-hf', 'jondurbin/airoboros-33b-gpt4', 'jondurbin/airoboros-33b-gpt4-m2.0', 'tiiuae/falcon-40b-instruct', 'psmathur/orca_mini_v3_13b', 'Aeala/GPT4-x-AlpacaDente-30b', 'MayaPH/GodziLLa-30B', 'jondurbin/airoboros-33b-gpt4-m2.0', 'TFLai/SpeechlessV1-Nova-13B', 'yeontaek/llama-2-13B-ensemble-v4', 'ajibawa-2023/carl-33b', 'jondurbin/airoboros-33b-gpt4-2.0', 'TFLai/Stable-Platypus2-13B-QLoRA-0.80-epoch', 'jondurbin/airoboros-33b-gpt4-1.3', 'TehVenom/oasst-sft-6-llama-33b-xor-MERGED-16bit', 'TFLai/OrcaMini-Platypus2-13B-QLoRA-0.80-epoch', 'jondurbin/airoboros-33b-gpt4-2.0', 'chargoddard/Chronorctypus-Limarobormes-13b', 'jondurbin/airoboros-33b-gpt4-1.3', 'Open-Orca/OpenOrca-Platypus2-13B', 'FelixChao/vicuna-33b-coder', 'FelixChao/vicuna-33b-coder', 'Gryphe/MythoMix-L2-13b', 'Aeala/Enterredaas-33b', 'yeontaek/llama-2-13B-ensemble-v1', 'TFLai/OpenOrcaPlatypus2-Platypus2-13B-QLora-0.80-epoch', 'TFLai/Ensemble5-Platypus2-13B-QLora-0.80-epoch', 'yeontaek/llama-2-13B-ensemble-v3', 'TFLai/MythoMix-Platypus2-13B-QLoRA-0.80-epoch', 'yihan6324/llama2-13b-instructmining-40k-sharegpt', 'timdettmers/guanaco-33b-merged', 'TFLai/EnsembleV5-Nova-13B', 'circulus/Llama-2-13b-orca-v1', 'Undi95/ReMM-SLERP-L2-13B', 'Gryphe/MythoMax-L2-13b', 'stabilityai/StableBeluga-13B', 'circulus/Llama-2-13b-orca-v1', 'ehartford/WizardLM-30B-Uncensored', 'The-Face-Of-Goonery/huginnv1.2', 'TheBloke/OpenOrcaxOpenChat-Preview2-13B-GPTQ', 'Sao10K/Stheno-L2-13B', 'bofenghuang/vigogne-2-13b-instruct', 'The-Face-Of-Goonery/Huginn-13b-FP16', 'grimpep/L2-MythoMax22b-instruct-Falseblock', 'TFLai/Nous-Hermes-Platypus2-13B-QLoRA-0.80-epoch', 'yeontaek/Platypus2xOpenOrca-13B-IA3-v4', 'yeontaek/Platypus2xOpenOrca-13B-IA3', 'yeontaek/Platypus2xOpenOrca-13B-IA3-ensemble', 'Open-Orca/LlongOrca-13B-16k', 'Sao10K/Stheno-Inverted-L2-13B', 'garage-bAInd/Camel-Platypus2-13B', 'digitous/Alpacino30b', 'NousResearch/Nous-Hermes-Llama2-13b', 'yeontaek/Platypus2xOpenOrca-13B-IA3-v3', 'TFLai/MythicalDestroyerV2-Platypus2-13B-QLora-0.80-epoch', 'TheBloke/VicUnlocked-30B-LoRA-HF', 'Undi95/Nous-Hermes-13B-Code', 'The-Face-Of-Goonery/Chronos-Beluga-v2-13bfp16', 'NousResearch/Nous-Hermes-Llama2-13b', 'Monero/WizardLM-Uncensored-SuperCOT-StoryTelling-30b', 'TheBloke/Wizard-Vicuna-30B-Uncensored-GPTQ', 'Open-Orca/OpenOrcaxOpenChat-Preview2-13B', 'Austism/chronos-hermes-13b-v2', 'yeontaek/Platypus2xOpenOrca-13B-IA3-v2.1', 'yeontaek/Platypus2xOpenOrca-13B-IA3-v2', 'Gryphe/MythoLogic-L2-13b', 'augtoma/qCammel-13', 'YeungNLP/firefly-llama2-13b-v1.2', 'Aspik101/StableBeluga-13B-instruct-PL-lora_unload', 'andreaskoepf/llama2-13b-megacode2_min100', 'rombodawg/LosslessMegaCoder-llama2-13b-mini', 'yulan-team/YuLan-Chat-2-13b-fp16', 'elinas/chronos-33b', 'YeungNLP/firefly-llama2-13b', 'Sao10K/Medusa-13b', 'OptimalScale/robin-65b-v2-delta', 'minlik/chinese-alpaca-33b-merged', 'OpenAssistant/llama2-13b-megacode2-oasst', 'TheBloke/OpenAssistant-SFT-7-Llama-30B-HF', 'Undi95/UndiMix-v1-13b', 'ehartford/Samantha-1.11-13b', 'beaugogh/Llama2-13b-sharegpt4', 'Aeala/GPT4-x-AlpacaDente2-30b', 'luffycodes/nash-vicuna-13b-v1dot5-ep2-w-rag-w-simple', 'WizardLM/WizardLM-13B-V1.1', 'uukuguy/speechless-orca-platypus-coig-lite-2k-0.6e-13b', 'huggyllama/llama-30b', 'Undi95/ReMM-L2-13B-PIPPA', 'Undi95/ReMM-L2-13B', 'gaodrew/gaodrew-gorgonzola-13b', 'lmsys/vicuna-13b-v1.5', 'yeontaek/Platypus2xOpenOrca-13B-LoRa', 'Yhyu13/llama-30B-hf-openassitant', 'huggingface/llama-30b', 'lmsys/vicuna-13b-v1.5', 'TFLai/Athena-Platypus2-13B-QLora-0.80-epoch', 'TheBloke/dromedary-65b-lora-HF', 'yeontaek/llama-2-13b-Beluga-QLoRA', 'The-Face-Of-Goonery/Huginn-13b-V4', 'The-Face-Of-Goonery/Huginn-13b-v4.5', 'The-Face-Of-Goonery/Huginn-v3-13b', 'tiiuae/falcon-40b', 'WhoTookMyAmogusNickname/NewHope_HF_not_official', 'gaodrew/OpenOrca-Platypus2-13B-thera-1250', 'SLAM-group/NewHope', 'garage-bAInd/Platypus2-13B', 'migtissera/Synthia-13B', 'elinas/chronos-13b-v2', 'mosaicml/mpt-30b-chat', 'CHIH-HUNG/llama-2-13b-OpenOrca_5w', 'uukuguy/speechless-hermes-coig-lite-13b', 'TheBloke/tulu-30B-fp16', 'uukuguy/speechless-hermes-coig-lite-13b', 'xDAN-AI/xDAN_13b_l2_lora', 'lmsys/vicuna-13b-v1.5-16k', 'openchat/openchat_v3.1', 'CHIH-HUNG/llama-2-13b-dolphin_5w', 'Aspik101/vicuna-13b-v1.5-PL-lora_unload', 'Undi95/MLewd-L2-13B', 'ehartford/minotaur-llama2-13b-qlora', 'kajdun/iubaris-13b-v3', 'TFLai/Limarp-Platypus2-13B-QLoRA-0.80-epoch', 'openchat/openchat_v3.1', 'uukuguy/speechless-orca-platypus-coig-lite-4k-0.6e-13b', 'ziqingyang/chinese-alpaca-2-13b', 'TFLai/Airboros2.1-Platypus2-13B-QLora-0.80-epoch', 'yeontaek/llama-2-13b-Guanaco-QLoRA', 'lmsys/vicuna-13b-v1.5-16k', 'ehartford/based-30b', 'kingbri/airolima-chronos-grad-l2-13B', 'openchat/openchat_v3.2', 'uukuguy/speechless-orca-platypus-coig-lite-4k-0.5e-13b', 'yeontaek/Platypus2-13B-LoRa', 'kingbri/chronolima-airo-grad-l2-13B', 'openchat/openchat_v3.2', 'TFLai/PuddleJumper-Platypus2-13B-QLoRA-0.80-epoch', 'shareAI/llama2-13b-Chinese-chat', 'ehartford/WizardLM-1.0-Uncensored-Llama2-13b', 'Aspik101/Redmond-Puffin-13B-instruct-PL-lora_unload', 'yeontaek/llama-2-13B-ensemble-v6', 'WizardLM/WizardLM-13B-V1.2', 'TheBloke/WizardLM-13B-V1.1-GPTQ', 'bhenrym14/airophin-13b-pntk-16k-fp16', 'ehartford/WizardLM-1.0-Uncensored-Llama2-13b', 'Mikael110/llama-2-13b-guanaco-fp16', 'yeontaek/airoboros-2.1-llama-2-13B-QLoRa', 'CalderaAI/13B-Legerdemain-L2', 'grimpep/llama2-22b-wizard_vicuna', 'grimpep/llama2-22B-GPLATTY', 'bhenrym14/airophin-13b-pntk-16k-fp16', 'yeontaek/llama-2-13b-QLoRA', 'OpenAssistant/llama2-13b-orca-8k-3319', 'TheBloke/WizardLM-13B-V1-1-SuperHOT-8K-fp16', 'duliadotio/dulia-13b-8k-alpha', 'Undi95/LewdEngine', 'OpenBuddy/openbuddy-llama2-13b-v8.1-fp16', 'CHIH-HUNG/llama-2-13b-open_orca_20w', 'bhenrym14/airoboros-33b-gpt4-1.4.1-lxctx-PI-16384-fp16', 'FlagAlpha/Llama2-Chinese-13b-Chat', 'LLMs/WizardLM-13B-V1.0', 'chansung/gpt4-alpaca-lora-13b-decapoda-1024', 'TheBloke/wizardLM-13B-1.0-fp16', 'digitous/13B-Chimera', 'yeontaek/Platypus2xOpenOrcaxGuanaco-13B-LoRa', 'jondurbin/airoboros-l2-13b-2.1', 'Monero/WizardLM-30B-Uncensored-Guanaco-SuperCOT-30b', 'TheBloke/UltraLM-13B-fp16', 'openaccess-ai-collective/minotaur-13b-fixed', 'NousResearch/Redmond-Puffin-13B', 'KoboldAI/LLaMA2-13B-Holomax', 'Lajonbot/WizardLM-13B-V1.2-PL-lora_unload', 'yeontaek/Platypus2-13B-LoRa-v2', 'TheBloke/airoboros-13B-HF', 'jondurbin/airoboros-13b', 'jjaaaww/posi_13b', 'CoolWP/llama-2-13b-guanaco-fp16', 'yeontaek/Platypus2-13B-QLoRa', 'h2oai/h2ogpt-research-oig-oasst1-512-30b', 'dfurman/llama-2-13b-guanaco-peft', 'NousResearch/Redmond-Puffin-13B', 'pe-nlp/llama-2-13b-platypus-vicuna-wizard', 'CHIH-HUNG/llama-2-13b-dolphin_20w', 'NousResearch/Nous-Hermes-13b', 'NobodyExistsOnTheInternet/GiftedConvo13bLoraNoEconsE4', 'ehartford/Wizard-Vicuna-13B-Uncensored', 'TheBloke/Wizard-Vicuna-13B-Uncensored-HF', 'openchat/openchat_v3.2_super', 'bhenrym14/airophin-v2-13b-PI-8k-fp16', 'openaccess-ai-collective/manticore-13b', 'The-Face-Of-Goonery/Huginn-22b-Prototype', 'jphme/Llama-2-13b-chat-german', 'grimpep/llama2-28B-Airo03', 'TheBloke/Kimiko-v2-13B-fp16', 'FPHam/Free_Sydney_13b_HF', 'lmsys/vicuna-13b-v1.3', 'FelixChao/llama2-13b-math1.1', 'CalderaAI/13B-BlueMethod', 'meta-llama/Llama-2-13b-chat-hf', 'deepse/CodeUp-Llama-2-13b-chat-hf', 'WizardLM/WizardMath-13B-V1.0', 'WizardLM/WizardMath-13B-V1.0', 'HyperbeeAI/Tulpar-7b-v0', 'xxyyy123/test_qkvo_adptor', 'xxyyy123/mc_data_30k_from_platpus_orca_7b_10k_v1_lora_qkvo_rank14_v2', 'openchat/openchat_v2_w', 'FelixChao/llama2-13b-math1.1', 'psmathur/orca_mini_v3_7b', 'TehVenom/Metharme-13b-Merged', 'xxyyy123/10k_v1_lora_qkvo_rank14_v3', 'OpenAssistant/llama2-13b-orca-v2-8k-3166', 'openaccess-ai-collective/wizard-mega-13b', 'jondurbin/airoboros-13b-gpt4-1.4', 'jondurbin/airoboros-13b-gpt4-1.4-fp16', 'Monero/Manticore-13b-Chat-Pyg-Guanaco', 'FelixChao/llama2-13b-math1.2', 'chargoddard/platypus-2-22b-relora', 'FelixChao/llama2-13b-math1.2', 'Gryphe/MythoBoros-13b', 'CalderaAI/13B-Ouroboros', 'OpenAssistant/llama2-13b-orca-v2-8k-3166', 'heegyu/LIMA2-13b-hf', 'digitous/13B-HyperMantis', 'Gryphe/MythoLogic-13b', 'TheBloke/Airoboros-L2-13B-2.1-GPTQ', 'chargoddard/platypus2-22b-relora', 'openchat/openchat_v2', 'yeontaek/Platypus2-13B-IA3', 'stabilityai/StableBeluga-7B', 'circulus/Llama-2-7b-orca-v1', 'budecosystem/genz-13b-v2', 'TheBloke/gpt4-x-vicuna-13B-HF', 'NobodyExistsOnTheInternet/GiftedConvo13bLoraNoEcons', 'zarakiquemparte/zarafusionex-1.1-l2-7b', 'Lajonbot/tableBeluga-7B-instruct-pl-lora_unload', 'jondurbin/airoboros-13b-gpt4', 'gaodrew/gaodrew-gorgonzola-13b', 'jondurbin/airoboros-13b-gpt4-1.1', 'TheBloke/gpt4-alpaca-lora-13B-HF', 'zarakiquemparte/zarablendex-vq-l2-7b', 'openaccess-ai-collective/manticore-13b-chat-pyg', 'Lajonbot/Llama-2-13b-hf-instruct-pl-lora_unload', 'NobodyExistsOnTheInternet/PuffedLIMA13bQLORA', 'xxyyy123/10k_v1_lora_qkvo_rank28_v2', 'jondurbin/airoboros-l2-13b-gpt4-1.4.1', 'dhmeltzer/Llama-2-13b-hf-eli5-wiki-1024_r_64_alpha_16', 'NobodyExistsOnTheInternet/PuffedConvo13bLoraE4', 'yihan6324/llama2-7b-instructmining-40k-sharegpt', 'CHIH-HUNG/llama-2-13b-Open_Platypus_and_ccp_2.6w', 'Aeala/GPT4-x-Alpasta-13b', 'psmathur/orca_mini_v2_13b', 'YeungNLP/firefly-llama-13b', 'psmathur/orca_mini_v2_13b', 'zarakiquemparte/zarafusionix-l2-7b', 'yihan6324/llama2-7b-instructmining-60k-sharegpt', 'yihan6324/llama-2-7b-instructmining-60k-sharegpt', 'layoric/llama-2-13b-code-alpaca', 'bofenghuang/vigogne-13b-instruct', 'Lajonbot/vicuna-13b-v1.3-PL-lora_unload', 'lvkaokao/llama2-7b-hf-chat-lora-v3', 'ehartford/dolphin-llama-13b', 'YeungNLP/firefly-llama-13b-v1.2', 'TheBloke/Kimiko-13B-fp16', 'kevinpro/Vicuna-13B-CoT', 'eachadea/vicuna-13b-1.1', 'pillowtalks-ai/delta13b', 'TheBloke/vicuna-13B-1.1-HF', 'TheBloke/Vicuna-13B-CoT-fp16', 'lmsys/vicuna-13b-delta-v1.1', 'lmsys/vicuna-13b-v1.1', 'xxyyy123/20k_v1_lora_qkvo_rank14_v2', 'TheBloke/guanaco-13B-HF', 'TheBloke/vicuna-13b-v1.3.0-GPTQ', 'edor/Stable-Platypus2-mini-7B', 'totally-not-an-llm/EverythingLM-13b-V2-16k', 'zarakiquemparte/zaraxe-l2-7b', 'beaugogh/Llama2-7b-openorca-mc-v2', 'TheBloke/Nous-Hermes-13B-SuperHOT-8K-fp16', 'quantumaikr/QuantumLM', 'jondurbin/airoboros-13b-gpt4-1.2', 'TheBloke/robin-13B-v2-fp16', 'TFLai/llama-2-13b-4bit-alpaca-gpt4', 'yihan6324/llama2-7b-instructmining-orca-40k', 'dvruette/oasst-llama-13b-2-epochs', 'Open-Orca/LlongOrca-7B-16k', 'Aspik101/Nous-Hermes-13b-pl-lora_unload', 'ehartford/Samantha-1.11-CodeLlama-34b', 'nkpz/llama2-22b-chat-wizard-uncensored', 'bofenghuang/vigogne-13b-chat', 'beaugogh/Llama2-7b-openorca-mc-v1', 'OptimalScale/robin-13b-v2-delta', 'pe-nlp/llama-2-13b-vicuna-wizard', 'chargoddard/llama2-22b', 'gywy/llama2-13b-chinese-v1', 'frank098/Wizard-Vicuna-13B-juniper', 'IGeniusDev/llama13B-quant8-testv1-openorca-customdataset', 'CHIH-HUNG/llama-2-13b-huangyt_Fintune_1_17w-gate_up_down_proj', 'eachadea/vicuna-13b', 'yihan6324/llama2-7b-instructmining-orca-90k', 'chargoddard/llama2-22b-blocktriangular', 'luffycodes/mcq-vicuna-13b-v1.5', 'Yhyu13/chimera-inst-chat-13b-hf', 'luffycodes/mcq-vicuna-13b-v1.5', 'chargoddard/ypotryll-22b-epoch2-qlora', 'totally-not-an-llm/EverythingLM-13b-16k', 'luffycodes/mcq-hal-vicuna-13b-v1.5', 'openaccess-ai-collective/minotaur-13b', 'IGeniusDev/llama13B-quant8-testv1-openorca-customdataset', 'chargoddard/llama2-22b-blocktriangular', 'TFLai/Platypus2-13B-QLoRA-0.80-epoch', 'meta-llama/Llama-2-13b-hf', 'CHIH-HUNG/llama-2-13b-huangyt_FINETUNE2_3w-gate_up_down_proj', 'luffycodes/mcq-hal-vicuna-13b-v1.5', 'TheBloke/Llama-2-13B-fp16', 'TaylorAI/Flash-Llama-13B', 'shareAI/bimoGPT-llama2-13b', 'wahaha1987/llama_13b_sharegpt94k_fastchat', 'openchat/openchat_8192', 'CHIH-HUNG/llama-2-13b-huangyt_Fintune_1_17w-q_k_v_o_proj', 'dvruette/llama-13b-pretrained-sft-do2', 'CHIH-HUNG/llama-2-13b-alpaca-test', 'OpenBuddy/openbuddy-llama2-13b-v11.1-bf16', 'CHIH-HUNG/llama-2-13b-FINETUNE2_TEST_2.2w', 'project-baize/baize-v2-13b', 'jondurbin/airoboros-l2-13b-gpt4-m2.0', 'yeontaek/Platypus2xOpenOrca-13B-LoRa-v2', 'CHIH-HUNG/llama-2-13b-huangyt_FINETUNE2_3w', 'xzuyn/Alpacino-SuperCOT-13B', 'jondurbin/airoboros-l2-13b-gpt4-2.0', 'aiplanet/effi-13b', 'clibrain/Llama-2-13b-ft-instruct-es', 'CHIH-HUNG/llama-2-13b-huangyt_Fintune_1_17w', 'bofenghuang/vigogne-2-7b-instruct', 'CHIH-HUNG/llama-2-13b-huangyt_FINETUNE2_3w-q_k_v_o_proj', 'bofenghuang/vigogne-2-7b-chat', 'aiplanet/effi-13b', 'haonan-li/bactrian-x-llama-13b-merged', 'beaugogh/Llama2-7b-sharegpt4', 'HWERI/Llama2-7b-sharegpt4', 'jondurbin/airoboros-13b-gpt4-1.3', 'jondurbin/airoboros-c34b-2.1', 'junelee/wizard-vicuna-13b', 'TheBloke/wizard-vicuna-13B-HF', 'Open-Orca/OpenOrca-Preview1-13B', 'TheBloke/h2ogpt-oasst1-512-30B-HF', 'TheBloke/Llama-2-13B-GPTQ', 'camel-ai/CAMEL-13B-Combined-Data', 'lmsys/vicuna-7b-v1.5', 'lmsys/vicuna-7b-v1.5-16k', 'lmsys/vicuna-7b-v1.5', 'ausboss/llama-13b-supercot', 'TheBloke/tulu-13B-fp16', 'NousResearch/Nous-Hermes-llama-2-7b', 'jlevin/guanaco-13b-llama-2', 'lmsys/vicuna-7b-v1.5-16k', 'dvruette/llama-13b-pretrained', 'nkpz/llama2-22b-daydreamer-v3', 'dvruette/llama-13b-pretrained-dropout', 'jondurbin/airoboros-l2-13b-2.1', 'LLMs/Stable-Vicuna-13B', '64bits/LexPodLM-13B', 'lizhuang144/llama_mirror_13b_v1.0', 'TheBloke/stable-vicuna-13B-HF', 'zarakiquemparte/zaraxls-l2-7b', 'TheBloke/Llama-2-13B-GPTQ', 'Kiddyz/testlm-3', 'migtissera/Synthia-7B', 'zarakiquemparte/zarablend-l2-7b', 'mosaicml/mpt-30b-instruct', 'PocketDoc/Dans-PileOfSets-Mk1-llama-13b-merged', 'vonjack/Qwen-LLaMAfied-HFTok-7B-Chat', 'l3utterfly/llama2-7b-layla', 'Lajonbot/vicuna-7b-v1.5-PL-lora_unload', 'heegyu/LIMA-13b-hf', 'frank098/WizardLM_13B_juniper', 'ashercn97/manatee-7b', 'chavinlo/gpt4-x-alpaca', 'PocketDoc/Dans-PersonalityEngine-13b', 'ehartford/WizardLM-1.0-Uncensored-CodeLlama-34b', 'digitous/Alpacino13b', 'edor/Hermes-Platypus2-mini-7B', 'lvkaokao/llama2-7b-hf-chat-lora-v2', 'Kiddyz/testlm-1-1', 'Kiddyz/testlm', 'Kiddyz/testlm-1', 'Kiddyz/testlm2', 'radm/Philosophy-Platypus2-13b', 'aiplanet/effi-13b', 'Harshvir/Llama-2-7B-physics', 'YeungNLP/firefly-ziya-13b', 'LinkSoul/Chinese-Llama-2-7b', 'PeanutJar/LLaMa-2-PeanutButter_v10-7B', 'OpenBuddy/openbuddy-llama2-13b-v11-bf16', 'StudentLLM/Alpagasus-2-13B-QLoRA-pipeline', 'meta-llama/Llama-2-13b-hf', 'WizardLM/WizardCoder-Python-34B-V1.0', 'dvruette/llama-13b-pretrained-sft-epoch-1', 'camel-ai/CAMEL-13B-Role-Playing-Data', 'ziqingyang/chinese-llama-2-13b', 'rombodawg/LosslessMegaCoder-llama2-7b-mini', 'TheBloke/koala-13B-HF', 'lmsys/vicuna-7b-delta-v1.1', 'eachadea/vicuna-7b-1.1', 'Ejafa/vicuna_7B_vanilla_1.1', 'lvkaokao/llama2-7b-hf-chat-lora', 'OpenBuddy/openbuddy-atom-13b-v9-bf16', 'Norquinal/llama-2-7b-claude-chat-rp', 'Danielbrdz/Barcenas-7b', 'heegyu/WizardVicuna2-13b-hf', 'meta-llama/Llama-2-7b-chat-hf', 'PeanutJar/LLaMa-2-PeanutButter_v14-7B', 'PeanutJar/LLaMa-2-PeanutButter_v4-7B', 'davzoku/cria-llama2-7b-v1.3', 'OpenBuddy/openbuddy-atom-13b-v9-bf16', 'lvkaokao/llama2-7b-hf-instruction-lora', 'Tap-M/Luna-AI-Llama2-Uncensored', 'ehartford/Samantha-1.11-7b', 'WizardLM/WizardCoder-Python-34B-V1.0', 'TheBloke/Manticore-13B-Chat-Pyg-Guanaco-SuperHOT-8K-GPTQ', 'Mikael110/llama-2-7b-guanaco-fp16', 'garage-bAInd/Platypus2-7B', 'PeanutJar/LLaMa-2-PeanutButter_v18_B-7B', 'mosaicml/mpt-30b', 'garage-bAInd/Platypus2-7B', 'huggingface/llama-13b', 'dvruette/oasst-llama-13b-1000-steps', 'jordiclive/gpt4all-alpaca-oa-codealpaca-lora-13b', 'huggyllama/llama-13b', 'Voicelab/trurl-2-7b', 'TFLai/llama-13b-4bit-alpaca', 'gywy/llama2-13b-chinese-v2', 'lmsys/longchat-13b-16k', 'Aspik101/trurl-2-7b-pl-instruct_unload', 'WizardLM/WizardMath-7B-V1.0', 'Norquinal/llama-2-7b-claude-chat', 'TheTravellingEngineer/llama2-7b-chat-hf-dpo', 'HuggingFaceH4/starchat-beta', 'joehuangx/spatial-vicuna-7b-v1.5-LoRA', 'conceptofmind/LLongMA-2-13b-16k', 'tianyil1/denas-llama2', 'lmsys/vicuna-7b-v1.3', 'conceptofmind/LLongMA-2-13b-16k', 'openchat/opencoderplus', 'ajibawa-2023/scarlett-7b', 'dhmeltzer/llama-7b-SFT_eli5_wiki65k_1024_r_64_alpha_16_merged', 'psyche/kollama2-7b-v2', 'heegyu/LIMA2-7b-hf', 'dhmeltzer/llama-7b-SFT-qlora-eli5-wiki_DPO_ds_RM_top_2_1024_r_64_alpha_16', 'abhishek/llama2guanacotest', 'jondurbin/airoboros-l2-7b-2.1', 'llama-anon/instruct-13b', 'FelixChao/vicuna-7B-physics', 'Aspik101/Llama-2-7b-hf-instruct-pl-lora_unload', 'shibing624/chinese-alpaca-plus-13b-hf', 'davzoku/cria-llama2-7b-v1.3_peft', 'quantumaikr/llama-2-7b-hf-guanaco-1k', 'togethercomputer/Llama-2-7B-32K-Instruct', 'sia-ai/llama-2-7b-1-percent-open-orca-1000-steps-v0', 'TheTravellingEngineer/llama2-7b-hf-guanaco', 'Lajonbot/Llama-2-7b-chat-hf-instruct-pl-lora_unload', 'jondurbin/airoboros-l2-7b-gpt4-1.4.1', 'wahaha1987/llama_7b_sharegpt94k_fastchat', 'FelixChao/vicuna-7B-chemical', 'TinyPixel/llama2-7b-oa', 'chaoyi-wu/MedLLaMA_13B', 'edor/Platypus2-mini-7B', 'RoversX/llama-2-7b-hf-small-shards-Samantha-V1-SFT', 'venkycs/llama-v2-7b-32kC-Security', 'psyche/kollama2-7b', 'Fredithefish/Guanaco-7B-Uncensored', 'TheTravellingEngineer/llama2-7b-chat-hf-guanaco', 'ehartford/WizardLM-13B-Uncensored', 'PocketDoc/Dans-CreepingSenseOfDoom', 'wenge-research/yayi-7b-llama2', 'georgesung/llama2_7b_chat_uncensored', 'TinyPixel/llama2-7b-instruct', 'quantumaikr/QuantumLM-7B', 'xzuyn/MedicWizard-7B', 'wenge-research/yayi-7b-llama2', 'TinyPixel/lima-test', 'elyza/ELYZA-japanese-Llama-2-7b-instruct', 'lgaalves/llama-2-7b-hf_open-platypus', 'ziqingyang/chinese-alpaca-2-7b', 'TehVenom/Pygmalion-Vicuna-1.1-7b', 'meta-llama/Llama-2-7b-hf', 'bongchoi/test-llama2-7b', 'TaylorAI/Flash-Llama-7B', 'TheTravellingEngineer/llama2-7b-chat-hf-v2', 'TheTravellingEngineer/llama2-7b-chat-hf-v4', 'kashif/stack-llama-2', 'PeanutJar/LLaMa-2-PeanutButter_v18_A-7B', 'ToolBench/ToolLLaMA-7b-LoRA', 'Monero/WizardLM-13b-OpenAssistant-Uncensored', 'TheTravellingEngineer/llama2-7b-chat-hf-v2', 'TheTravellingEngineer/llama2-7b-chat-hf-v4', 'mrm8488/llama-2-coder-7b', 'elyza/ELYZA-japanese-Llama-2-7b-fast-instruct', 'clibrain/Llama-2-7b-ft-instruct-es', 'medalpaca/medalpaca-7b', 'TheBloke/tulu-7B-fp16', 'OpenBuddy/openbuddy-openllama-13b-v7-fp16', 'TaylorAI/FLAN-Llama-7B-2_Llama2-7B-Flash_868_full_model', 'Aspik101/vicuna-7b-v1.3-instruct-pl-lora_unload', 'jondurbin/airoboros-l2-7b-gpt4-2.0', 'dhmeltzer/llama-7b-SFT_ds_eli5_1024_r_64_alpha_16_merged', 'GOAT-AI/GOAT-7B-Community', 'AtomEchoAI/AtomGPT_56k', 'julianweng/Llama-2-7b-chat-orcah', 'TehVenom/Pygmalion-13b-Merged', 'jondurbin/airoboros-7b-gpt4-1.1', 'dhmeltzer/llama-7b-SFT_ds_wiki65k_1024_r_64_alpha_16_merged', 'bofenghuang/vigogne-7b-chat', 'lmsys/longchat-7b-v1.5-32k', 'jondurbin/airoboros-l2-7b-gpt4-m2.0', 'synapsoft/Llama-2-7b-chat-hf-flan2022-1.2M', 'jondurbin/airoboros-7b-gpt4-1.4', 'Charlie911/vicuna-7b-v1.5-lora-mctaco', 'yihan6324/instructmining-platypus-15k', 'meta-llama/Llama-2-7b-hf', 'TheTravellingEngineer/llama2-7b-chat-hf-v3', 'quantumaikr/KoreanLM-hf', 'openthaigpt/openthaigpt-1.0.0-alpha-7b-chat-ckpt-hf', 'TheBloke/Llama-2-7B-GPTQ', 'TheBloke/Llama-2-7B-GPTQ', 'LLMs/AlpacaGPT4-7B-elina', 'ehartford/Wizard-Vicuna-7B-Uncensored', 'TheBloke/Wizard-Vicuna-7B-Uncensored-HF', 'TheTravellingEngineer/llama2-7b-chat-hf-v3', 'golaxy/gowizardlm', 'ehartford/dolphin-llama2-7b', 'CHIH-HUNG/llama-2-7b-dolphin_10w-test', 'mncai/chatdoctor', 'psyche/kollama2-7b-v3', 'jondurbin/airoboros-7b-gpt4', 'jondurbin/airoboros-7b', 'TheBloke/airoboros-7b-gpt4-fp16', 'mosaicml/mpt-7b-8k-chat', 'elyza/ELYZA-japanese-Llama-2-7b', 'bofenghuang/vigogne-7b-instruct', 'jxhong/CAlign-alpaca-7b', 'golaxy/goims', 'jondurbin/airoboros-7b-gpt4-1.2', 'jphme/orca_mini_v2_ger_7b', 'psmathur/orca_mini_v2_7b', 'notstoic/PygmalionCoT-7b', 'golaxy/gogpt2-13b', 'golaxy/gogpt2-13b-chat', 'togethercomputer/LLaMA-2-7B-32K', 'TheBloke/wizardLM-7B-HF', 'keyfan/vicuna-chinese-replication-v1.1', 'golaxy/gogpt2-7b', 'aiplanet/effi-7b', 'arver/llama7b-qlora', 'titan087/OpenLlama13B-Guanaco', 'chavinlo/alpaca-native', 'project-baize/baize-healthcare-lora-7B', 'AlpinDale/pygmalion-instruct', 'openlm-research/open_llama_13b', 'jondurbin/airoboros-7b-gpt4-1.3', 'elyza/ELYZA-japanese-Llama-2-7b-fast', 'jondurbin/airoboros-gpt-3.5-turbo-100k-7b', 'uukuguy/speechless-codellama-orca-13b', 'bigcode/starcoderplus', 'TheBloke/guanaco-7B-HF', 'Neko-Institute-of-Science/metharme-7b', 'TigerResearch/tigerbot-7b-base', 'golaxy/gogpt-7b', 'togethercomputer/LLaMA-2-7B-32K', 'yhyhy3/open_llama_7b_v2_med_instruct', 'ajibawa-2023/carl-7b', 'stabilityai/stablelm-base-alpha-7b-v2', 'conceptofmind/LLongMA-2-7b-16k', 'TehVenom/Pygmalion_AlpacaLora-7b', 'jondurbin/airoboros-7b-gpt4-1.4.1-qlora', 'wannaphong/openthaigpt-0.1.0-beta-full-model_for_open_llm_leaderboard', 'ausboss/llama7b-wizardlm-unfiltered', 'project-baize/baize-v2-7b', 'LMFlow/Robin-v2', 'HanningZhang/Robin-v2', 'LMFlow/Robin-7b-v2', 'OptimalScale/robin-7b-v2-delta', 'uukuguy/speechless-codellama-platypus-13b', 'jerryjalapeno/nart-100k-7b', 'wenge-research/yayi-13b-llama2', 'fireballoon/baichuan-vicuna-chinese-7b', 'jlevin/guanaco-unchained-llama-2-7b', 'csitfun/llama-7b-logicot', 'DevaMalla/llama7b_alpaca_1gpu_bf16', 'WeOpenML/PandaLM-Alpaca-7B-v1', 'illuin/test-custom-llama', 'yeontaek/WizardCoder-Python-13B-LoRa', 'ashercn97/giraffe-7b', 'mosaicml/mpt-7b-chat', 'abhishek/autotrain-llama-alpaca-peft-52508123785', 'Neko-Institute-of-Science/pygmalion-7b', 'TFLai/llama-7b-4bit-alpaca', 'huggingface/llama-7b', 'TheBloke/Planner-7B-fp16', 'shibing624/chinese-llama-plus-13b-hf', 'AGI-inc/lora_moe_7b_baseline', 'DevaMalla/llama-base-7b', 'AGI-inc/lora_moe_7b', 'togethercomputer/GPT-JT-6B-v0', 'ehartford/WizardLM-7B-Uncensored', 'shibing624/chinese-alpaca-plus-7b-hf', 'beomi/llama-2-ko-7b', 'mosaicml/mpt-7b-8k-instruct', 'Enno-Ai/ennodata-7b', 'mosaicml/mpt-7b-instruct', 'facebook/opt-iml-max-30b', 'WeOpenML/Alpaca-7B-v1', 'TheBloke/Project-Baize-v2-7B-GPTQ', 'codellama/CodeLlama-13b-Instruct-hf', 'TheBloke/CodeLlama-13B-Instruct-fp16', 'facebook/galactica-30b', 'FreedomIntelligence/phoenix-inst-chat-7b', 'openlm-research/open_llama_7b_v2', 'GeorgiaTechResearchInstitute/galpaca-30b', 'THUDM/chatglm2-6b', 'togethercomputer/GPT-JT-6B-v1', 'TheBloke/koala-7B-HF', 'nathan0/mpt_delta_tuned_model_v3', 'nathan0/mpt_delta_tuned_model_v2', 'GeorgiaTechResearchInstitute/galpaca-30b', 'JosephusCheung/Guanaco', 'shareAI/CodeLLaMA-chat-13b-Chinese', 'TigerResearch/tigerbot-7b-sft', 'Writer/InstructPalmyra-20b', 'OpenAssistant/codellama-13b-oasst-sft-v10', 'bigscience/bloomz-7b1-mt', 'nathan0/mpt_delta_tuned_model_v3', 'VMware/open-llama-7b-open-instruct', 'baichuan-inc/Baichuan-7B', 'anas-awadalla/mpt-7b', 'mosaicml/mpt-7b', 'bigscience/bloomz-7b1', 'ziqingyang/chinese-llama-2-7b', 'OpenAssistant/codellama-13b-oasst-sft-v10', 'wenge-research/yayi-7b', 'tiiuae/falcon-7b', 'togethercomputer/RedPajama-INCITE-Instruct-7B-v0.1', 'togethercomputer/RedPajama-INCITE-7B-Instruct', 'TheBloke/landmark-attention-llama7b-fp16', 'togethercomputer/GPT-JT-Moderation-6B', 'h2oai/h2ogpt-gm-oasst1-en-1024-20b', 'dvruette/gpt-neox-20b-full-precision', 'TehVenom/Moderator-Chan_GPT-JT-6b', 'dvruette/oasst-gpt-neox-20b-1000-steps', 'AlekseyKorshuk/pygmalion-6b-vicuna-chatml', 'facebook/opt-66b', 'Salesforce/codegen-16B-nl', 'Vmware/open-llama-7b-v2-open-instruct', 'mosaicml/mpt-7b-storywriter', 'acrastt/Marx-3B-V2', 'openlm-research/open_llama_7b', 'Fredithefish/ReasonixPajama-3B-HF', 'togethercomputer/GPT-NeoXT-Chat-Base-20B', 'psmathur/orca_mini_13b', 'RWKV/rwkv-raven-14b', 'h2oai/h2ogpt-oasst1-512-20b', 'acrastt/Marx-3B', 'klosax/open_llama_13b_600bt_preview', 'synapsoft/Llama-2-7b-hf-flan2022-1.2M', 'OpenAssistant/oasst-sft-1-pythia-12b', 'golaxy/gogpt-7b-bloom', 'Writer/palmyra-large', 'psmathur/orca_mini_7b', 'dvruette/oasst-pythia-12b-6000-steps', 'NousResearch/CodeLlama-13b-hf', 'codellama/CodeLlama-13b-hf', 'h2oai/h2ogpt-gm-oasst1-multilang-1024-20b', 'VMware/open-llama-0.7T-7B-open-instruct-v1.1', 'dvruette/oasst-pythia-12b-flash-attn-5000-steps', 'dvruette/oasst-gpt-neox-20b-3000-steps', 'RobbeD/OpenLlama-Platypus-3B', 'facebook/opt-30b', 'acrastt/Puma-3B', 'OpenAssistant/oasst-sft-4-pythia-12b-epoch-3.5', 'dvruette/oasst-pythia-12b-pretrained-sft', 'digitous/GPT-R', 'acrastt/Griffin-3B', 'togethercomputer/RedPajama-INCITE-Base-7B-v0.1', 'togethercomputer/RedPajama-INCITE-7B-Base', 'CobraMamba/mamba-gpt-3b-v3', 'Danielbrdz/CodeBarcenas-7b', 'l3utterfly/open-llama-3b-v2-layla', 'CobraMamba/mamba-gpt-3b-v2', 'OpenAssistant/pythia-12b-sft-v8-7k-steps', 'KoboldAI/GPT-NeoX-20B-Erebus', 'RobbeD/Orca-Platypus-3B', 'h2oai/h2ogpt-gm-oasst1-en-1024-12b', 'OpenAssistant/pythia-12b-sft-v8-2.5k-steps', 'AlekseyKorshuk/chatml-pyg-v1', 'togethercomputer/RedPajama-INCITE-Chat-7B-v0.1', 'togethercomputer/RedPajama-INCITE-7B-Chat', 'digitous/Javelin-R', 'dvruette/oasst-pythia-12b-reference', 'EleutherAI/gpt-neox-20b', 'KoboldAI/fairseq-dense-13B', 'OpenAssistant/pythia-12b-sft-v8-rlhf-2k-steps', 'codellama/CodeLlama-7b-Instruct-hf', 'digitous/Javelin-GPTJ', 'KoboldAI/GPT-NeoX-20B-Skein', 'digitous/Javalion-R', 'h2oai/h2ogpt-oasst1-512-12b', 'acrastt/Bean-3B', 'KoboldAI/GPT-J-6B-Skein', 'nomic-ai/gpt4all-j', 'databricks/dolly-v2-12b', 'TehVenom/Dolly_Shygmalion-6b-Dev_V8P2', 'databricks/dolly-v2-7b', 'Aspik101/WizardVicuna-Uncensored-3B-instruct-PL-lora_unload', 'digitous/Adventien-GPTJ', 'openlm-research/open_llama_3b_v2', 'RWKV/rwkv-4-14b-pile', 'Lazycuber/Janemalion-6B', 'OpenAssistant/pythia-12b-pre-v8-12.5k-steps', 'digitous/Janin-R', 'kfkas/Llama-2-ko-7b-Chat', 'heegyu/WizardVicuna-Uncensored-3B-0719', 'h2oai/h2ogpt-gm-oasst1-en-1024-open-llama-7b-preview-400bt', 'TaylorAI/Flash-Llama-3B', 'kfkas/Llama-2-ko-7b-Chat', 'digitous/Skegma-GPTJ', 'digitous/Javalion-GPTJ', 'Pirr/pythia-13b-deduped-green_devil', 'TehVenom/PPO_Shygmalion-V8p4_Dev-6b', 'dvruette/oasst-pythia-6.9b-4000-steps', 'heegyu/WizardVicuna-3B-0719', 'psmathur/orca_mini_3b', 'OpenAssistant/galactica-6.7b-finetuned', 'frank098/orca_mini_3b_juniper', 'PygmalionAI/pygmalion-6b', 'TehVenom/PPO_Pygway-V8p4_Dev-6b', 'TFLai/gpt-neox-20b-4bit-alpaca', 'Corianas/gpt-j-6B-Dolly', 'TehVenom/Dolly_Shygmalion-6b', 'digitous/Janin-GPTJ', 'TehVenom/GPT-J-Pyg_PPO-6B-Dev-V8p4', 'EleutherAI/gpt-j-6b', 'KoboldAI/GPT-J-6B-Shinen', 'TehVenom/Dolly_Malion-6b', 'TehVenom/ChanMalion', 'Salesforce/codegen-6B-nl', 'Fredithefish/RedPajama-INCITE-Chat-3B-Instruction-Tuning-with-GPT-4', 'KoboldAI/GPT-J-6B-Janeway', 'togethercomputer/RedPajama-INCITE-Chat-3B-v1', 'togethercomputer/Pythia-Chat-Base-7B', 'heegyu/RedTulu-Uncensored-3B-0719', 'KoboldAI/PPO_Pygway-6b-Mix', 'KoboldAI/OPT-13B-Erebus', 'KoboldAI/fairseq-dense-6.7B', 'EleutherAI/pythia-12b-deduped', 'pszemraj/pythia-6.9b-HC3', 'Fredithefish/Guanaco-3B-Uncensored-v2', 'facebook/opt-13b', 'TehVenom/GPT-J-Pyg_PPO-6B', 'EleutherAI/pythia-6.9b-deduped', 'Devio/test-1400', 'Fredithefish/Guanaco-3B-Uncensored', 'codellama/CodeLlama-7b-hf', 'acrastt/RedPajama-INCITE-Chat-Instruct-3B-V1', 'Fredithefish/ScarletPajama-3B-HF', 'KoboldAI/OPT-13B-Nerybus-Mix', 'YeungNLP/firefly-bloom-7b1', 'DanielSc4/RedPajama-INCITE-Chat-3B-v1-RL-LoRA-8bit-test1', 'klosax/open_llama_7b_400bt_preview', 'KoboldAI/OPT-13B-Nerys-v2', 'TehVenom/PPO_Shygmalion-6b', 'amazon/LightGPT', 'KnutJaegersberg/black_goo_recipe_c', 'NousResearch/CodeLlama-7b-hf', 'togethercomputer/RedPajama-INCITE-Instruct-3B-v1', 'heegyu/WizardVicuna-open-llama-3b-v2', 'bigscience/bloom-7b1', 'Devio/test-22B', 'RWKV/rwkv-raven-7b', 'hakurei/instruct-12b', 'CobraMamba/mamba-gpt-3b', 'KnutJaegersberg/black_goo_recipe_a', 'acrastt/OmegLLaMA-3B', 'codellama/CodeLlama-7b-Instruct-hf', 'h2oai/h2ogpt-oig-oasst1-512-6_9b', 'KoboldAI/OPT-6.7B-Erebus', 'facebook/opt-6.7b', 'KnutJaegersberg/black_goo_recipe_d', 'KnutJaegersberg/LLongMA-3b-LIMA', 'KnutJaegersberg/black_goo_recipe_b', 'KoboldAI/OPT-6.7B-Nerybus-Mix', 'health360/Healix-3B', 'EleutherAI/pythia-12b', 'Fredithefish/RedPajama-INCITE-Chat-3B-ShareGPT-11K', 'GeorgiaTechResearchInstitute/galactica-6.7b-evol-instruct-70k', 'h2oai/h2ogpt-oig-oasst1-256-6_9b', 'ikala/bloom-zh-3b-chat', 'Taekyoon/llama2-ko-7b-test', 'anhnv125/pygmalion-6b-roleplay', 'TehVenom/DiffMerge_Pygmalion_Main-onto-V8P4', 'KoboldAI/OPT-6B-nerys-v2', 'Lazycuber/pyg-instruct-wizardlm', 'Devio/testC', 'KoboldAI/OPT-30B-Erebus', 'Fredithefish/CrimsonPajama', 'togethercomputer/RedPajama-INCITE-Base-3B-v1', 'bigscience/bloomz-3b', 'conceptofmind/Open-LLongMA-3b', 'RWKV/rwkv-4-7b-pile', 'openlm-research/open_llama_3b', 'ewof/koishi-instruct-3b', 'DanielSc4/RedPajama-INCITE-Chat-3B-v1-FT-LoRA-8bit-test1', 'cerebras/Cerebras-GPT-13B', 'EleutherAI/pythia-6.7b', 'aisquared/chopt-2_7b', 'Azure99/blossom-v1-3b', 'PSanni/Deer-3b', 'bertin-project/bertin-gpt-j-6B-alpaca', 'OpenBuddy/openbuddy-openllama-3b-v10-bf16', 'KoboldAI/fairseq-dense-2.7B', 'ehartford/CodeLlama-34b-Instruct-hf', 'codellama/CodeLlama-34b-Instruct-hf', 'TheBloke/CodeLlama-34B-Instruct-fp16', 'h2oai/h2ogpt-gm-oasst1-en-2048-open-llama-7b-preview-300bt-v2', 'openlm-research/open_llama_7b_700bt_preview', 'NbAiLab/nb-gpt-j-6B-alpaca', 'KoboldAI/OPT-2.7B-Erebus', 'Writer/camel-5b-hf', 'EleutherAI/pythia-2.7b', 'facebook/xglm-7.5B', 'EleutherAI/pythia-2.8b-deduped', 'klosax/open_llama_3b_350bt_preview', 'klosax/openllama-3b-350bt', 'KoboldAI/OPT-2.7B-Nerybus-Mix', 'KoboldAI/GPT-J-6B-Adventure', 'cerebras/Cerebras-GPT-6.7B', 'TFLai/pythia-2.8b-4bit-alpaca', 'facebook/opt-2.7b', 'KoboldAI/OPT-2.7B-Nerys-v2', 'bigscience/bloom-3b', 'Devio/test100', 'RWKV/rwkv-raven-3b', 'Azure99/blossom-v2-3b', 'codellama/CodeLlama-34b-Python-hf', 'bhenrym14/airoboros-33b-gpt4-1.4.1-PI-8192-fp16', 'EleutherAI/gpt-neo-2.7B', 'danielhanchen/open_llama_3b_600bt_preview', 'HuggingFaceH4/starchat-alpha', 'pythainlp/wangchanglm-7.5B-sft-en-sharded', 'beaugogh/pythia-1.4b-deduped-sharegpt', 'HWERI/pythia-1.4b-deduped-sharegpt', 'OpenAssistant/stablelm-7b-sft-v7-epoch-3', 'codellama/CodeLlama-7b-Python-hf', 'aisquared/chopt-1_3b', 'PygmalionAI/metharme-1.3b', 'Linly-AI/Chinese-LLaMA-2-13B-hf', 'chargoddard/llama-2-34b-uncode', 'RWKV/rwkv-4-3b-pile', 'pythainlp/wangchanglm-7.5B-sft-enth', 'MBZUAI/LaMini-GPT-1.5B', 'Writer/palmyra-base', 'KoboldAI/fairseq-dense-1.3B', 'EleutherAI/pythia-1.4b-deduped', 'MBZUAI/lamini-neo-1.3b', 'h2oai/h2ogpt-gm-oasst1-en-2048-open-llama-7b-preview-300bt', 'sartmis1/starcoder-finetune-openapi', 'MayaPH/opt-flan-iml-6.7b', 'facebook/xglm-4.5B', 'WizardLM/WizardCoder-15B-V1.0', 'facebook/opt-iml-max-1.3b', 'stabilityai/stablelm-tuned-alpha-7b', 'aisquared/dlite-v2-1_5b', 'stabilityai/stablelm-base-alpha-7b', 'sartmis1/starcoder-finetune-selfinstruct', 'lizhuang144/starcoder_mirror', 'bigcode/starcoder', 'TheBloke/CodeLlama-34B-Python-fp16', 'open-llm-leaderboard/bloomz-1b7-4bit-alpaca-auto-eval-adapter-applied', 'ehartford/CodeLlama-34b-Python-hf', 'codellama/CodeLlama-7b-Python-hf', 'GeorgiaTechResearchInstitute/starcoder-gpteacher-code-instruct', 'LoupGarou/WizardCoder-Guanaco-15B-V1.0', 'golaxy/gogpt-3b-bloom', 'EleutherAI/pythia-1.3b', 'codellama/CodeLlama-13b-Python-hf', 'hakurei/lotus-12B', 'NYTK/PULI-GPTrio', 'facebook/opt-1.3b', 'TheBloke/CodeLlama-13B-Python-fp16', 'codellama/CodeLlama-13b-Python-hf', 'RWKV/rwkv-raven-1b5', 'PygmalionAI/pygmalion-2.7b', 'bigscience/bloom-1b7', 'gpt2-xl', 'LoupGarou/WizardCoder-Guanaco-15B-V1.1', 'RWKV/rwkv-4-1b5-pile', 'codellama/CodeLlama-34b-hf', 'NousResearch/CodeLlama-34b-hf', 'rinna/bilingual-gpt-neox-4b-8k', 'lxe/Cerebras-GPT-2.7B-Alpaca-SP', 'cerebras/Cerebras-GPT-2.7B', 'jzjiao/opt-1.3b-rlhf', 'EleutherAI/gpt-neo-1.3B', 'aisquared/dlite-v1-1_5b', 'Corianas/Quokka_2.7b', 'MrNJK/gpt2-xl-sft', 'facebook/galactica-1.3b', 'aisquared/dlite-v2-774m', 'EleutherAI/pythia-1b-deduped', 'Kunhao/pile-7b-250b-tokens', 'w601sxs/b1ade-1b', 'rinna/bilingual-gpt-neox-4b', 'shaohang/SparseOPT-1.3B', 'shaohang/Sparse0.5_OPT-1.3', 'EleutherAI/polyglot-ko-12.8b', 'Salesforce/codegen-6B-multi', 'bigscience/bloom-1b1', 'TFLai/gpt-neo-1.3B-4bit-alpaca', 'FabbriSimo01/Bloom_1b_Quantized', 'MBZUAI/LaMini-GPT-774M', 'Locutusque/gpt2-large-conversational', 'Devio/test-3b', 'stabilityai/stablelm-tuned-alpha-3b', 'PygmalionAI/pygmalion-1.3b', 'KoboldAI/fairseq-dense-355M', 'Rachneet/gpt2-xl-alpaca', 'gpt2-large', 'Mikivis/gpt2-large-lora-sft', 'stabilityai/stablelm-base-alpha-3b', 'gpt2-medium', 'Kunhao/pile-7b', 'aisquared/dlite-v1-774m', 'aisquared/dlite-v2-355m', 'YeungNLP/firefly-bloom-2b6-v2', 'KnutJaegersberg/gpt-2-xl-EvolInstruct', 'KnutJaegersberg/galactica-orca-wizardlm-1.3b', 'cerebras/Cerebras-GPT-1.3B', 'FabbriSimo01/Cerebras_1.3b_Quantized', 'facebook/xglm-1.7B', 'EleutherAI/pythia-410m-deduped', 'TheBloke/GPlatty-30B-SuperHOT-8K-fp16', 'DataLinguistic/DataLinguistic-34B-V1.0', 'Corianas/Quokka_1.3b', 'TheTravellingEngineer/bloom-560m-RLHF-v2', 'Corianas/1.3b', 'RWKV/rwkv-4-430m-pile', 'porkorbeef/Llama-2-13b-sf', 'xhyi/PT_GPTNEO350_ATG', 'TheBloke/Wizard-Vicuna-13B-Uncensored-GPTQ', 'bigscience/bloomz-560m', 'TheBloke/medalpaca-13B-GPTQ-4bit', 'TheBloke/Vicuna-33B-1-3-SuperHOT-8K-fp16', 'aisquared/dlite-v1-355m', 'uukuguy/speechless-codellama-orca-airoboros-13b-0.10e', 'yhyhy3/med-orca-instruct-33b', 'TheBloke/Wizard-Vicuna-30B-Superhot-8K-fp16', 'TheTravellingEngineer/bloom-1b1-RLHF', 'MBZUAI/lamini-cerebras-1.3b', 'IDEA-CCNL/Ziya-LLaMA-13B-Pretrain-v1', 'TheBloke/WizardLM-7B-uncensored-GPTQ', 'TheBloke/EverythingLM-13B-16K-GPTQ', 'quantumaikr/open_llama_7b_hf', 'TheBloke/chronos-wizardlm-uc-scot-st-13B-GPTQ', 'TheBloke/WizardLM-30B-Uncensored-GPTQ', 'IDEA-CCNL/Ziya-LLaMA-13B-v1', 'Phind/Phind-CodeLlama-34B-v1', 'robowaifudev/megatron-gpt2-345m', 'MayaPH/GodziLLa-30B-instruct', 'TheBloke/CAMEL-33B-Combined-Data-SuperHOT-8K-fp16', 'uukuguy/speechless-codellama-orca-platypus-13b-0.10e', 'doas/test2', 'BreadAi/PM_modelV2', 'bigcode/santacoder', 'TheBloke/wizard-vicuna-13B-GPTQ', 'porkorbeef/Llama-2-13b', 'TehVenom/DiffMerge-DollyGPT-Pygmalion', 'PygmalionAI/pygmalion-350m', 'TheBloke/orca_mini_v3_7B-GPTQ', 'TheBloke/WizardLM-Uncensored-SuperCOT-StoryTelling-30B-GPTQ', 'TheBloke/WizardLM-30B-GPTQ', 'bigscience/bloom-560m', 'TFLai/gpt2-turkish-uncased', 'TheBloke/guanaco-33B-GPTQ', 'TheBloke/openchat_v2_openorca_preview-GPTQ', 'porkorbeef/Llama-2-13b-public', 'TheBloke/LongChat-13B-GPTQ', 'yhyhy3/med-orca-instruct-33b', 'TheBloke/airoboros-33B-gpt4-1-4-SuperHOT-8K-fp16', 'TheBloke/Chinese-Alpaca-33B-SuperHOT-8K-fp16', 'MayaPH/FinOPT-Franklin', 'TheBloke/WizardLM-33B-V1.0-Uncensored-GPTQ', 'TheBloke/Project-Baize-v2-13B-GPTQ', 'malhajar/Platypus2-70B-instruct-4bit-gptq', 'KoboldAI/OPT-350M-Erebus', 'rishiraj/bloom-560m-guanaco', 'Panchovix/WizardLM-33B-V1.0-Uncensored-SuperHOT-8k', 'doas/test5', 'vicgalle/alpaca-7b', 'beomi/KoAlpaca-Polyglot-5.8B', 'Phind/Phind-CodeLlama-34B-Python-v1', 'timdettmers/guanaco-65b-merged', 'TheBloke/wizard-mega-13B-GPTQ', 'MayaPH/GodziLLa-30B-plus', 'TheBloke/Platypus-30B-SuperHOT-8K-fp16', 'facebook/opt-350m', 'KoboldAI/OPT-350M-Nerys-v2', 'TheBloke/robin-33B-v2-GPTQ', 'jaspercatapang/Echidna-30B', 'TheBloke/llama-30b-supercot-SuperHOT-8K-fp16', 'marcchew/test1', 'Harshvir/LaMini-Neo-1.3B-Mental-Health_lora', 'golaxy/gogpt-560m', 'TheBloke/orca_mini_13B-GPTQ', 'Panchovix/airoboros-33b-gpt4-1.2-SuperHOT-8k', 'Aspik101/tulu-7b-instruct-pl-lora_unload', 'Phind/Phind-CodeLlama-34B-v2', 'BreadAi/MusePy-1-2', 'cerebras/Cerebras-GPT-590M', 'microsoft/CodeGPT-small-py', 'victor123/WizardLM-13B-1.0', 'OptimalScale/robin-65b-v2-delta', 'voidful/changpt-bart', 'FabbriSimo01/GPT_Large_Quantized', 'MayaPH/FinOPT-Lincoln', 'KoboldAI/fairseq-dense-125M', 'SebastianSchramm/Cerebras-GPT-111M-instruction', 'TheTravellingEngineer/bloom-560m-RLHF', 'breadlicker45/dough-instruct-base-001', 'WizardLM/WizardLM-30B-V1.0', 'WizardLM/WizardLM-30B-V1.0', 'WizardLM/WizardLM-30B-V1.0', 'TaylorAI/Flash-Llama-30M-20001', 'porkorbeef/Llama-2-13b-12_153950', 'huggingtweets/bladeecity-jerma985', 'KnutJaegersberg/megatron-GPT-2-345m-EvolInstruct', 'bhenrym14/airoboros-33b-gpt4-1.4.1-lxctx-PI-16384-fp16', 'microsoft/DialoGPT-small', 'Corianas/590m', 'facebook/xglm-564M', 'EleutherAI/gpt-neo-125m', 'EleutherAI/pythia-160m-deduped', 'klosax/pythia-160m-deduped-step92k-193bt', 'MBZUAI/lamini-neo-125m', 'bigcode/tiny_starcoder_py', 'concedo/OPT-19M-ChatSalad', 'anton-l/gpt-j-tiny-random', 'grantprice/Cerebras-GPT-590M-finetuned-DND', 'deepnight-research/zsc-text', 'WangZeJun/bloom-820m-chat', 'cerebras/Cerebras-GPT-256M', 'ai-forever/rugpt3large_based_on_gpt2', 'alibidaran/medical_transcription_generator', 'Deci/DeciCoder-1b', 'microsoft/DialoGPT-medium', 'ogimgio/gpt-neo-125m-neurallinguisticpioneers', 'open-llm-leaderboard/bloom-560m-4bit-alpaca-auto-eval-adapter-applied', 'BreadAi/gpt-YA-1-1_160M', 'microsoft/DialoGPT-large', 'facebook/opt-125m', 'huggingtweets/jerma985', 'Locutusque/gpt2-conversational-or-qa', 'concedo/Pythia-70M-ChatSalad', 'roneneldan/TinyStories-1M', 'BreadAi/DiscordPy', 'bigcode/gpt_bigcode-santacoder', 'Tincando/fiction_story_generator', 'klosax/pythia-70m-deduped-step44k-92bt', 'Quake24/easyTermsSummerizer', 'BreadAi/gpt-YA-1-1_70M', 'EleutherAI/pythia-160m', 'euclaise/gpt-neox-122m-minipile-digits', 'MBZUAI/lamini-cerebras-590m', 'nicholasKluge/Aira-124M', 'MayaPH/FinOPT-Washington', 'cyberagent/open-calm-large', 'BreadAi/StoryPy', 'EleutherAI/pythia-70m', 'BreadAi/gpt-Youtube', 'roneneldan/TinyStories-33M', 'EleutherAI/pythia-70m-deduped', 'lgaalves/gpt2_guanaco-dolly-platypus', 'Corianas/Quokka_590m', 'lgaalves/gpt2_platypus-dolly-guanaco', 'cyberagent/open-calm-7b', 'RWKV/rwkv-4-169m-pile', 'gpt2', 'roneneldan/TinyStories-28M', 'lgaalves/gpt2_open-platypus', 'gpt2', 'SaylorTwift/gpt2_test', 'roneneldan/TinyStories-3M', 'nthngdy/pythia-owt2-70m-50k', 'Corianas/256_5epoch', 'roneneldan/TinyStories-8M', 'lgaalves/gpt2-dolly', 'nthngdy/pythia-owt2-70m-100k', 'aisquared/dlite-v2-124m', 'mncai/SGPT-1.3B-insurance-epoch10', 'huggingtweets/gladosystem', 'abhiramtirumala/DialoGPT-sarcastic-medium', 'MBZUAI/lamini-cerebras-256m', 'cerebras/Cerebras-GPT-111M', 'uberkie/metharme-1.3b-finetuned', 'MBZUAI/lamini-cerebras-111m', 'psyche/kogpt', 'Corianas/Quokka_256m', 'vicgalle/gpt2-alpaca-gpt4', 'aisquared/dlite-v1-124m', 'Mikivis/xuanxuan', 'MBZUAI/LaMini-GPT-124M', 'vicgalle/gpt2-alpaca', 'huashiyiqike/testmodel', 'Corianas/111m', 'baseline']
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
models = [
|
2 |
+
"uni-tianyan/Uni-TianYan",
|
3 |
+
"fangloveskari/ORCA_LLaMA_70B_QLoRA",
|
4 |
+
"garage-bAInd/Platypus2-70B-instruct",
|
5 |
+
"upstage/Llama-2-70b-instruct-v2",
|
6 |
+
"fangloveskari/Platypus_QLoRA_LLaMA_70b",
|
7 |
+
"yeontaek/llama-2-70B-ensemble-v5",
|
8 |
+
"TheBloke/Genz-70b-GPTQ",
|
9 |
+
"TheBloke/Platypus2-70B-Instruct-GPTQ",
|
10 |
+
"psmathur/model_007",
|
11 |
+
"yeontaek/llama-2-70B-ensemble-v4",
|
12 |
+
"psmathur/orca_mini_v3_70b",
|
13 |
+
"ehartford/Samantha-1.11-70b",
|
14 |
+
"MayaPH/GodziLLa2-70B",
|
15 |
+
"psmathur/model_007_v2",
|
16 |
+
"chargoddard/MelangeA-70b",
|
17 |
+
"ehartford/Samantha-1.1-70b",
|
18 |
+
"psmathur/model_009",
|
19 |
+
"upstage/Llama-2-70b-instruct",
|
20 |
+
"yeontaek/llama-2-70B-ensemble-v7",
|
21 |
+
"yeontaek/llama-2-70B-ensemble-v6",
|
22 |
+
"chargoddard/MelangeB-70b",
|
23 |
+
"yeontaek/llama-2-70B-ensemble-v3",
|
24 |
+
"chargoddard/MelangeC-70b",
|
25 |
+
"garage-bAInd/Camel-Platypus2-70B",
|
26 |
+
"yeontaek/llama-2-70B-ensemble-v2",
|
27 |
+
"garage-bAInd/Camel-Platypus2-70B",
|
28 |
+
"migtissera/Synthia-70B-v1.2",
|
29 |
+
"v2ray/LLaMA-2-Wizard-70B-QLoRA",
|
30 |
+
"quantumaikr/llama-2-70b-fb16-orca-chat-10k",
|
31 |
+
"v2ray/LLaMA-2-Wizard-70B-QLoRA",
|
32 |
+
"stabilityai/StableBeluga2",
|
33 |
+
"quantumaikr/llama-2-70b-fb16-guanaco-1k",
|
34 |
+
"garage-bAInd/Camel-Platypus2-70B",
|
35 |
+
"migtissera/Synthia-70B-v1.1",
|
36 |
+
"migtissera/Synthia-70B",
|
37 |
+
"psmathur/model_101",
|
38 |
+
"augtoma/qCammel70",
|
39 |
+
"augtoma/qCammel-70",
|
40 |
+
"augtoma/qCammel-70v1",
|
41 |
+
"augtoma/qCammel-70x",
|
42 |
+
"augtoma/qCammel-70-x",
|
43 |
+
"jondurbin/airoboros-l2-70b-gpt4-1.4.1",
|
44 |
+
"dfurman/llama-2-70b-dolphin-peft",
|
45 |
+
"jondurbin/airoboros-l2-70b-2.1",
|
46 |
+
"TheBloke/llama-2-70b-Guanaco-QLoRA-fp16",
|
47 |
+
"quantumaikr/QuantumLM-llama2-70B-Korean-LoRA",
|
48 |
+
"quantumaikr/quantumairk-llama-2-70B-instruct",
|
49 |
+
"psmathur/model_420",
|
50 |
+
"psmathur/model_51",
|
51 |
+
"garage-bAInd/Camel-Platypus2-70B",
|
52 |
+
"TheBloke/Airoboros-L2-70B-2.1-GPTQ",
|
53 |
+
"OpenAssistant/llama2-70b-oasst-sft-v10",
|
54 |
+
"garage-bAInd/Platypus2-70B",
|
55 |
+
"liuxiang886/llama2-70B-qlora-gpt4",
|
56 |
+
"upstage/llama-65b-instruct",
|
57 |
+
"quantumaikr/llama-2-70b-fb16-korean",
|
58 |
+
"NousResearch/Nous-Hermes-Llama2-70b",
|
59 |
+
"v2ray/LLaMA-2-Jannie-70B-QLoRA",
|
60 |
+
"jondurbin/airoboros-l2-70b-gpt4-m2.0",
|
61 |
+
"jondurbin/airoboros-l2-70b-gpt4-m2.0",
|
62 |
+
"OpenAssistant/llama2-70b-oasst-sft-v10",
|
63 |
+
"yeontaek/llama-2-70B-ensemble-v8",
|
64 |
+
"jondurbin/airoboros-l2-70b-gpt4-2.0",
|
65 |
+
"jarradh/llama2_70b_chat_uncensored",
|
66 |
+
"WizardLM/WizardMath-70B-V1.0",
|
67 |
+
"jordiclive/Llama-2-70b-oasst-1-200",
|
68 |
+
"WizardLM/WizardMath-70B-V1.0",
|
69 |
+
"jondurbin/airoboros-l2-70b-gpt4-2.0",
|
70 |
+
"OpenLemur/lemur-70b-chat-v1",
|
71 |
+
"tiiuae/falcon-180B",
|
72 |
+
"tiiuae/falcon-180B",
|
73 |
+
"stabilityai/StableBeluga1-Delta",
|
74 |
+
"psmathur/model_42_70b",
|
75 |
+
"psmathur/test_42_70b",
|
76 |
+
"TheBloke/fiction.live-Kimiko-V2-70B-fp16",
|
77 |
+
"tiiuae/falcon-180B",
|
78 |
+
"WizardLM/WizardMath-70B-V1.0",
|
79 |
+
"tiiuae/falcon-180B-chat",
|
80 |
+
"jondurbin/airoboros-l2-70b-gpt4-2.0",
|
81 |
+
"ehartford/samantha-1.1-llama-33b",
|
82 |
+
"ajibawa-2023/scarlett-33b",
|
83 |
+
"ddobokki/Llama-2-70b-orca-200k",
|
84 |
+
"TheBloke/gpt4-alpaca-lora_mlp-65B-HF",
|
85 |
+
"tiiuae/falcon-180B-chat",
|
86 |
+
"tiiuae/falcon-180B-chat",
|
87 |
+
"tiiuae/falcon-180B",
|
88 |
+
"TheBloke/Lemur-70B-Chat-v1-GPTQ",
|
89 |
+
"NousResearch/Nous-Puffin-70B",
|
90 |
+
"WizardLM/WizardLM-70B-V1.0",
|
91 |
+
"WizardLM/WizardMath-70B-V1.0",
|
92 |
+
"meta-llama/Llama-2-70b-hf",
|
93 |
+
"TheBloke/Llama-2-70B-fp16",
|
94 |
+
"Weyaxi/llama-2-alpacagpt4-1000step",
|
95 |
+
"WizardLM/WizardLM-70B-V1.0",
|
96 |
+
"simsim314/WizardLM-70B-V1.0-HF",
|
97 |
+
"simsim314/WizardLM-70B-V1.0-HF",
|
98 |
+
"WizardLM/WizardLM-70B-V1.0",
|
99 |
+
"openbmb/UltraLM-65b",
|
100 |
+
"psmathur/model_420_preview",
|
101 |
+
"WizardLM/WizardLM-70B-V1.0",
|
102 |
+
"simsim314/WizardLM-70B-V1.0-HF",
|
103 |
+
"OpenBuddy/openbuddy-llama2-70b-v10.1-bf16",
|
104 |
+
"upstage/llama-30b-instruct-2048",
|
105 |
+
"jondurbin/airoboros-65b-gpt4-1.2",
|
106 |
+
"TheBloke/guanaco-65B-HF",
|
107 |
+
"jondurbin/airoboros-65b-gpt4-1.3",
|
108 |
+
"meta-llama/Llama-2-70b-chat-hf",
|
109 |
+
"ValiantLabs/ShiningValiant",
|
110 |
+
"Faradaylab/Aria-70B",
|
111 |
+
"lilloukas/GPlatty-30B",
|
112 |
+
"TheBloke/VicUnlocked-alpaca-65B-QLoRA-fp16",
|
113 |
+
"jondurbin/airoboros-65b-gpt4-1.4-peft",
|
114 |
+
"jondurbin/airoboros-65b-gpt4-1.4",
|
115 |
+
"jondurbin/airoboros-65b-gpt4-2.0",
|
116 |
+
"TheBloke/WizardLM-70B-V1.0-GPTQ",
|
117 |
+
"TheBloke/WizardLM-70B-V1.0-GPTQ",
|
118 |
+
"ariellee/SuperPlatty-30B",
|
119 |
+
"jondurbin/airoboros-65b-gpt4-1.4",
|
120 |
+
"jondurbin/airoboros-65b-gpt4-2.0",
|
121 |
+
"yeontaek/llama-2-70b-IA3-guanaco",
|
122 |
+
"CalderaAI/30B-Lazarus",
|
123 |
+
"Aspik101/trurl-2-13b-pl-instruct_unload",
|
124 |
+
"ehartford/WizardLM-33B-V1.0-Uncensored",
|
125 |
+
"ehartford/WizardLM-33B-V1.0-Uncensored",
|
126 |
+
"OpenBuddy/openbuddy-llama-65b-v8-bf16",
|
127 |
+
"Aspik101/llama-30b-instruct-2048-PL-lora",
|
128 |
+
"h2oai/h2ogpt-research-oasst1-llama-65b",
|
129 |
+
"Aspik101/llama-30b-instruct-2048-PL-lora",
|
130 |
+
"CalderaAI/30B-Epsilon",
|
131 |
+
"Aspik101/llama-30b-2048-instruct-PL-lora_unload",
|
132 |
+
"jondurbin/airoboros-65b-gpt4-m2.0",
|
133 |
+
"jondurbin/airoboros-65b-gpt4-m2.0",
|
134 |
+
"Aeala/Alpaca-elina-65b",
|
135 |
+
"TheBloke/robin-65b-v2-fp16",
|
136 |
+
"TheBloke/gpt4-alpaca-lora-30b-HF",
|
137 |
+
"TheBloke/Llama-2-70B-chat-GPTQ",
|
138 |
+
"upstage/llama-30b-instruct",
|
139 |
+
"OpenLemur/lemur-70b-v1",
|
140 |
+
"lmsys/vicuna-33b-v1.3",
|
141 |
+
"ausboss/llama-30b-supercot",
|
142 |
+
"ai-business/Luban-13B",
|
143 |
+
"Henk717/airochronos-33B",
|
144 |
+
"lmsys/vicuna-33b-v1.3",
|
145 |
+
"Henk717/airochronos-33B",
|
146 |
+
"bavest/fin-llama-33b-merged",
|
147 |
+
"jondurbin/airoboros-33b-gpt4-1.4",
|
148 |
+
"YeungNLP/firefly-llama-30b",
|
149 |
+
"Aspik101/30B-Lazarus-instruct-PL-lora_unload",
|
150 |
+
"uukuguy/speechless-llama2-luban-orca-platypus-13b",
|
151 |
+
"xxyyy123/test_merge_p_ov1_w0.66_w0.5_n1",
|
152 |
+
"jondurbin/airoboros-33b-gpt4-1.2",
|
153 |
+
"TheBloke/alpaca-lora-65B-HF",
|
154 |
+
"bofenghuang/vigogne-33b-instruct",
|
155 |
+
"yeontaek/llama-2-13B-ensemble-v5",
|
156 |
+
"garage-bAInd/Platypus-30B",
|
157 |
+
"Open-Orca/OpenOrca-Platypus2-13B",
|
158 |
+
"kajdun/viwaai-30b_v4",
|
159 |
+
"lilloukas/Platypus-30B",
|
160 |
+
"Open-Orca/OpenOrca-Platypus2-13B",
|
161 |
+
"Henk717/chronoboros-33B",
|
162 |
+
"jondurbin/airoboros-33b-2.1",
|
163 |
+
"HiTZ/alpaca-lora-65b-en-pt-es-ca",
|
164 |
+
"quantumaikr/QuantumLM-70B-hf",
|
165 |
+
"uukuguy/speechless-llama2-13b",
|
166 |
+
"uukuguy/speechless-llama2-hermes-orca-platypus-13b",
|
167 |
+
"openaccess-ai-collective/manticore-30b-chat-pyg-alpha",
|
168 |
+
"LLMs/WizardLM-30B-V1.0",
|
169 |
+
"TheBloke/WizardLM-30B-fp16",
|
170 |
+
"openaccess-ai-collective/hippogriff-30b-chat",
|
171 |
+
"concedo/Vicuzard-30B-Uncensored",
|
172 |
+
"TFLai/OpenOrca-Platypus2-13B-QLoRA-0.80-epoch",
|
173 |
+
"huggingface/llama-65b",
|
174 |
+
"huggyllama/llama-65b",
|
175 |
+
"gaodrew/gaodrew-llama-30b-instruct-2048-Open-Platypus-100steps",
|
176 |
+
"uukuguy/speechless-llama2-hermes-orca-platypus-wizardlm-13b",
|
177 |
+
"Sao10K/Mythical-Destroyer-V2-L2-13B",
|
178 |
+
"camel-ai/CAMEL-33B-Combined-Data",
|
179 |
+
"dsvv-cair/alpaca-cleaned-llama-30b-bf16",
|
180 |
+
"MetaIX/GPT4-X-Alpasta-30b",
|
181 |
+
"garage-bAInd/Stable-Platypus2-13B",
|
182 |
+
"TFLai/Luban-Platypus2-13B-QLora-0.80-epoch",
|
183 |
+
"TheBloke/OpenOrca-Platypus2-13B-GPTQ",
|
184 |
+
"IkariDev/Athena-tmp",
|
185 |
+
"OpenBuddyEA/openbuddy-llama-30b-v7.1-bf16",
|
186 |
+
"OpenBuddyEA/openbuddy-llama-30b-v7.1-bf16",
|
187 |
+
"Open-Orca/OpenOrcaxOpenChat-Preview2-13B",
|
188 |
+
"psmathur/model_007_13b_v2",
|
189 |
+
"Aspik101/Vicuzard-30B-Uncensored-instruct-PL-lora_unload",
|
190 |
+
"jondurbin/airoboros-33b-gpt4-m2.0",
|
191 |
+
"Sao10K/Mythical-Destroyer-L2-13B",
|
192 |
+
"TheBloke/Wizard-Vicuna-30B-Uncensored-fp16",
|
193 |
+
"ehartford/Wizard-Vicuna-30B-Uncensored",
|
194 |
+
"TFLai/Nova-13B",
|
195 |
+
"TheBloke/robin-33B-v2-fp16",
|
196 |
+
"totally-not-an-llm/PuddleJumper-13b",
|
197 |
+
"Aeala/VicUnlocked-alpaca-30b",
|
198 |
+
"Yhyu13/oasst-rlhf-2-llama-30b-7k-steps-hf",
|
199 |
+
"jondurbin/airoboros-33b-gpt4",
|
200 |
+
"jondurbin/airoboros-33b-gpt4-m2.0",
|
201 |
+
"tiiuae/falcon-40b-instruct",
|
202 |
+
"psmathur/orca_mini_v3_13b",
|
203 |
+
"Aeala/GPT4-x-AlpacaDente-30b",
|
204 |
+
"MayaPH/GodziLLa-30B",
|
205 |
+
"jondurbin/airoboros-33b-gpt4-m2.0",
|
206 |
+
"TFLai/SpeechlessV1-Nova-13B",
|
207 |
+
"yeontaek/llama-2-13B-ensemble-v4",
|
208 |
+
"ajibawa-2023/carl-33b",
|
209 |
+
"jondurbin/airoboros-33b-gpt4-2.0",
|
210 |
+
"TFLai/Stable-Platypus2-13B-QLoRA-0.80-epoch",
|
211 |
+
"jondurbin/airoboros-33b-gpt4-1.3",
|
212 |
+
"TehVenom/oasst-sft-6-llama-33b-xor-MERGED-16bit",
|
213 |
+
"TFLai/OrcaMini-Platypus2-13B-QLoRA-0.80-epoch",
|
214 |
+
"jondurbin/airoboros-33b-gpt4-2.0",
|
215 |
+
"chargoddard/Chronorctypus-Limarobormes-13b",
|
216 |
+
"jondurbin/airoboros-33b-gpt4-1.3",
|
217 |
+
"Open-Orca/OpenOrca-Platypus2-13B",
|
218 |
+
"FelixChao/vicuna-33b-coder",
|
219 |
+
"FelixChao/vicuna-33b-coder",
|
220 |
+
"Gryphe/MythoMix-L2-13b",
|
221 |
+
"Aeala/Enterredaas-33b",
|
222 |
+
"yeontaek/llama-2-13B-ensemble-v1",
|
223 |
+
"TFLai/OpenOrcaPlatypus2-Platypus2-13B-QLora-0.80-epoch",
|
224 |
+
"TFLai/Ensemble5-Platypus2-13B-QLora-0.80-epoch",
|
225 |
+
"yeontaek/llama-2-13B-ensemble-v3",
|
226 |
+
"TFLai/MythoMix-Platypus2-13B-QLoRA-0.80-epoch",
|
227 |
+
"yihan6324/llama2-13b-instructmining-40k-sharegpt",
|
228 |
+
"timdettmers/guanaco-33b-merged",
|
229 |
+
"TFLai/EnsembleV5-Nova-13B",
|
230 |
+
"circulus/Llama-2-13b-orca-v1",
|
231 |
+
"Undi95/ReMM-SLERP-L2-13B",
|
232 |
+
"Gryphe/MythoMax-L2-13b",
|
233 |
+
"stabilityai/StableBeluga-13B",
|
234 |
+
"circulus/Llama-2-13b-orca-v1",
|
235 |
+
"ehartford/WizardLM-30B-Uncensored",
|
236 |
+
"The-Face-Of-Goonery/huginnv1.2",
|
237 |
+
"TheBloke/OpenOrcaxOpenChat-Preview2-13B-GPTQ",
|
238 |
+
"Sao10K/Stheno-L2-13B",
|
239 |
+
"bofenghuang/vigogne-2-13b-instruct",
|
240 |
+
"The-Face-Of-Goonery/Huginn-13b-FP16",
|
241 |
+
"grimpep/L2-MythoMax22b-instruct-Falseblock",
|
242 |
+
"TFLai/Nous-Hermes-Platypus2-13B-QLoRA-0.80-epoch",
|
243 |
+
"yeontaek/Platypus2xOpenOrca-13B-IA3-v4",
|
244 |
+
"yeontaek/Platypus2xOpenOrca-13B-IA3",
|
245 |
+
"yeontaek/Platypus2xOpenOrca-13B-IA3-ensemble",
|
246 |
+
"Open-Orca/LlongOrca-13B-16k",
|
247 |
+
"Sao10K/Stheno-Inverted-L2-13B",
|
248 |
+
"garage-bAInd/Camel-Platypus2-13B",
|
249 |
+
"digitous/Alpacino30b",
|
250 |
+
"NousResearch/Nous-Hermes-Llama2-13b",
|
251 |
+
"yeontaek/Platypus2xOpenOrca-13B-IA3-v3",
|
252 |
+
"TFLai/MythicalDestroyerV2-Platypus2-13B-QLora-0.80-epoch",
|
253 |
+
"TheBloke/VicUnlocked-30B-LoRA-HF",
|
254 |
+
"Undi95/Nous-Hermes-13B-Code",
|
255 |
+
"The-Face-Of-Goonery/Chronos-Beluga-v2-13bfp16",
|
256 |
+
"NousResearch/Nous-Hermes-Llama2-13b",
|
257 |
+
"Monero/WizardLM-Uncensored-SuperCOT-StoryTelling-30b",
|
258 |
+
"TheBloke/Wizard-Vicuna-30B-Uncensored-GPTQ",
|
259 |
+
"Open-Orca/OpenOrcaxOpenChat-Preview2-13B",
|
260 |
+
"Austism/chronos-hermes-13b-v2",
|
261 |
+
"yeontaek/Platypus2xOpenOrca-13B-IA3-v2.1",
|
262 |
+
"yeontaek/Platypus2xOpenOrca-13B-IA3-v2",
|
263 |
+
"Gryphe/MythoLogic-L2-13b",
|
264 |
+
"augtoma/qCammel-13",
|
265 |
+
"YeungNLP/firefly-llama2-13b-v1.2",
|
266 |
+
"Aspik101/StableBeluga-13B-instruct-PL-lora_unload",
|
267 |
+
"andreaskoepf/llama2-13b-megacode2_min100",
|
268 |
+
"rombodawg/LosslessMegaCoder-llama2-13b-mini",
|
269 |
+
"yulan-team/YuLan-Chat-2-13b-fp16",
|
270 |
+
"elinas/chronos-33b",
|
271 |
+
"YeungNLP/firefly-llama2-13b",
|
272 |
+
"Sao10K/Medusa-13b",
|
273 |
+
"OptimalScale/robin-65b-v2-delta",
|
274 |
+
"minlik/chinese-alpaca-33b-merged",
|
275 |
+
"OpenAssistant/llama2-13b-megacode2-oasst",
|
276 |
+
"TheBloke/OpenAssistant-SFT-7-Llama-30B-HF",
|
277 |
+
"Undi95/UndiMix-v1-13b",
|
278 |
+
"ehartford/Samantha-1.11-13b",
|
279 |
+
"beaugogh/Llama2-13b-sharegpt4",
|
280 |
+
"Aeala/GPT4-x-AlpacaDente2-30b",
|
281 |
+
"luffycodes/nash-vicuna-13b-v1dot5-ep2-w-rag-w-simple",
|
282 |
+
"WizardLM/WizardLM-13B-V1.1",
|
283 |
+
"uukuguy/speechless-orca-platypus-coig-lite-2k-0.6e-13b",
|
284 |
+
"huggyllama/llama-30b",
|
285 |
+
"Undi95/ReMM-L2-13B-PIPPA",
|
286 |
+
"Undi95/ReMM-L2-13B",
|
287 |
+
"gaodrew/gaodrew-gorgonzola-13b",
|
288 |
+
"lmsys/vicuna-13b-v1.5",
|
289 |
+
"yeontaek/Platypus2xOpenOrca-13B-LoRa",
|
290 |
+
"Yhyu13/llama-30B-hf-openassitant",
|
291 |
+
"huggingface/llama-30b",
|
292 |
+
"lmsys/vicuna-13b-v1.5",
|
293 |
+
"TFLai/Athena-Platypus2-13B-QLora-0.80-epoch",
|
294 |
+
"TheBloke/dromedary-65b-lora-HF",
|
295 |
+
"yeontaek/llama-2-13b-Beluga-QLoRA",
|
296 |
+
"The-Face-Of-Goonery/Huginn-13b-V4",
|
297 |
+
"The-Face-Of-Goonery/Huginn-13b-v4.5",
|
298 |
+
"The-Face-Of-Goonery/Huginn-v3-13b",
|
299 |
+
"tiiuae/falcon-40b",
|
300 |
+
"WhoTookMyAmogusNickname/NewHope_HF_not_official",
|
301 |
+
"gaodrew/OpenOrca-Platypus2-13B-thera-1250",
|
302 |
+
"SLAM-group/NewHope",
|
303 |
+
"garage-bAInd/Platypus2-13B",
|
304 |
+
"migtissera/Synthia-13B",
|
305 |
+
"elinas/chronos-13b-v2",
|
306 |
+
"mosaicml/mpt-30b-chat",
|
307 |
+
"CHIH-HUNG/llama-2-13b-OpenOrca_5w",
|
308 |
+
"uukuguy/speechless-hermes-coig-lite-13b",
|
309 |
+
"TheBloke/tulu-30B-fp16",
|
310 |
+
"uukuguy/speechless-hermes-coig-lite-13b",
|
311 |
+
"xDAN-AI/xDAN_13b_l2_lora",
|
312 |
+
"lmsys/vicuna-13b-v1.5-16k",
|
313 |
+
"openchat/openchat_v3.1",
|
314 |
+
"CHIH-HUNG/llama-2-13b-dolphin_5w",
|
315 |
+
"Aspik101/vicuna-13b-v1.5-PL-lora_unload",
|
316 |
+
"Undi95/MLewd-L2-13B",
|
317 |
+
"ehartford/minotaur-llama2-13b-qlora",
|
318 |
+
"kajdun/iubaris-13b-v3",
|
319 |
+
"TFLai/Limarp-Platypus2-13B-QLoRA-0.80-epoch",
|
320 |
+
"openchat/openchat_v3.1",
|
321 |
+
"uukuguy/speechless-orca-platypus-coig-lite-4k-0.6e-13b",
|
322 |
+
"ziqingyang/chinese-alpaca-2-13b",
|
323 |
+
"TFLai/Airboros2.1-Platypus2-13B-QLora-0.80-epoch",
|
324 |
+
"yeontaek/llama-2-13b-Guanaco-QLoRA",
|
325 |
+
"lmsys/vicuna-13b-v1.5-16k",
|
326 |
+
"ehartford/based-30b",
|
327 |
+
"kingbri/airolima-chronos-grad-l2-13B",
|
328 |
+
"openchat/openchat_v3.2",
|
329 |
+
"uukuguy/speechless-orca-platypus-coig-lite-4k-0.5e-13b",
|
330 |
+
"yeontaek/Platypus2-13B-LoRa",
|
331 |
+
"kingbri/chronolima-airo-grad-l2-13B",
|
332 |
+
"openchat/openchat_v3.2",
|
333 |
+
"TFLai/PuddleJumper-Platypus2-13B-QLoRA-0.80-epoch",
|
334 |
+
"shareAI/llama2-13b-Chinese-chat",
|
335 |
+
"ehartford/WizardLM-1.0-Uncensored-Llama2-13b",
|
336 |
+
"Aspik101/Redmond-Puffin-13B-instruct-PL-lora_unload",
|
337 |
+
"yeontaek/llama-2-13B-ensemble-v6",
|
338 |
+
"WizardLM/WizardLM-13B-V1.2",
|
339 |
+
"TheBloke/WizardLM-13B-V1.1-GPTQ",
|
340 |
+
"bhenrym14/airophin-13b-pntk-16k-fp16",
|
341 |
+
"ehartford/WizardLM-1.0-Uncensored-Llama2-13b",
|
342 |
+
"Mikael110/llama-2-13b-guanaco-fp16",
|
343 |
+
"yeontaek/airoboros-2.1-llama-2-13B-QLoRa",
|
344 |
+
"CalderaAI/13B-Legerdemain-L2",
|
345 |
+
"grimpep/llama2-22b-wizard_vicuna",
|
346 |
+
"grimpep/llama2-22B-GPLATTY",
|
347 |
+
"bhenrym14/airophin-13b-pntk-16k-fp16",
|
348 |
+
"yeontaek/llama-2-13b-QLoRA",
|
349 |
+
"OpenAssistant/llama2-13b-orca-8k-3319",
|
350 |
+
"TheBloke/WizardLM-13B-V1-1-SuperHOT-8K-fp16",
|
351 |
+
"duliadotio/dulia-13b-8k-alpha",
|
352 |
+
"Undi95/LewdEngine",
|
353 |
+
"OpenBuddy/openbuddy-llama2-13b-v8.1-fp16",
|
354 |
+
"CHIH-HUNG/llama-2-13b-open_orca_20w",
|
355 |
+
"bhenrym14/airoboros-33b-gpt4-1.4.1-lxctx-PI-16384-fp16",
|
356 |
+
"FlagAlpha/Llama2-Chinese-13b-Chat",
|
357 |
+
"LLMs/WizardLM-13B-V1.0",
|
358 |
+
"chansung/gpt4-alpaca-lora-13b-decapoda-1024",
|
359 |
+
"TheBloke/wizardLM-13B-1.0-fp16",
|
360 |
+
"digitous/13B-Chimera",
|
361 |
+
"yeontaek/Platypus2xOpenOrcaxGuanaco-13B-LoRa",
|
362 |
+
"jondurbin/airoboros-l2-13b-2.1",
|
363 |
+
"Monero/WizardLM-30B-Uncensored-Guanaco-SuperCOT-30b",
|
364 |
+
"TheBloke/UltraLM-13B-fp16",
|
365 |
+
"openaccess-ai-collective/minotaur-13b-fixed",
|
366 |
+
"NousResearch/Redmond-Puffin-13B",
|
367 |
+
"KoboldAI/LLaMA2-13B-Holomax",
|
368 |
+
"Lajonbot/WizardLM-13B-V1.2-PL-lora_unload",
|
369 |
+
"yeontaek/Platypus2-13B-LoRa-v2",
|
370 |
+
"TheBloke/airoboros-13B-HF",
|
371 |
+
"jondurbin/airoboros-13b",
|
372 |
+
"jjaaaww/posi_13b",
|
373 |
+
"CoolWP/llama-2-13b-guanaco-fp16",
|
374 |
+
"yeontaek/Platypus2-13B-QLoRa",
|
375 |
+
"h2oai/h2ogpt-research-oig-oasst1-512-30b",
|
376 |
+
"dfurman/llama-2-13b-guanaco-peft",
|
377 |
+
"NousResearch/Redmond-Puffin-13B",
|
378 |
+
"pe-nlp/llama-2-13b-platypus-vicuna-wizard",
|
379 |
+
"CHIH-HUNG/llama-2-13b-dolphin_20w",
|
380 |
+
"NousResearch/Nous-Hermes-13b",
|
381 |
+
"NobodyExistsOnTheInternet/GiftedConvo13bLoraNoEconsE4",
|
382 |
+
"ehartford/Wizard-Vicuna-13B-Uncensored",
|
383 |
+
"TheBloke/Wizard-Vicuna-13B-Uncensored-HF",
|
384 |
+
"openchat/openchat_v3.2_super",
|
385 |
+
"bhenrym14/airophin-v2-13b-PI-8k-fp16",
|
386 |
+
"openaccess-ai-collective/manticore-13b",
|
387 |
+
"The-Face-Of-Goonery/Huginn-22b-Prototype",
|
388 |
+
"jphme/Llama-2-13b-chat-german",
|
389 |
+
"grimpep/llama2-28B-Airo03",
|
390 |
+
"TheBloke/Kimiko-v2-13B-fp16",
|
391 |
+
"FPHam/Free_Sydney_13b_HF",
|
392 |
+
"lmsys/vicuna-13b-v1.3",
|
393 |
+
"FelixChao/llama2-13b-math1.1",
|
394 |
+
"CalderaAI/13B-BlueMethod",
|
395 |
+
"meta-llama/Llama-2-13b-chat-hf",
|
396 |
+
"deepse/CodeUp-Llama-2-13b-chat-hf",
|
397 |
+
"WizardLM/WizardMath-13B-V1.0",
|
398 |
+
"WizardLM/WizardMath-13B-V1.0",
|
399 |
+
"HyperbeeAI/Tulpar-7b-v0",
|
400 |
+
"xxyyy123/test_qkvo_adptor",
|
401 |
+
"xxyyy123/mc_data_30k_from_platpus_orca_7b_10k_v1_lora_qkvo_rank14_v2",
|
402 |
+
"openchat/openchat_v2_w",
|
403 |
+
"FelixChao/llama2-13b-math1.1",
|
404 |
+
"psmathur/orca_mini_v3_7b",
|
405 |
+
"TehVenom/Metharme-13b-Merged",
|
406 |
+
"xxyyy123/10k_v1_lora_qkvo_rank14_v3",
|
407 |
+
"OpenAssistant/llama2-13b-orca-v2-8k-3166",
|
408 |
+
"openaccess-ai-collective/wizard-mega-13b",
|
409 |
+
"jondurbin/airoboros-13b-gpt4-1.4",
|
410 |
+
"jondurbin/airoboros-13b-gpt4-1.4-fp16",
|
411 |
+
"Monero/Manticore-13b-Chat-Pyg-Guanaco",
|
412 |
+
"FelixChao/llama2-13b-math1.2",
|
413 |
+
"chargoddard/platypus-2-22b-relora",
|
414 |
+
"FelixChao/llama2-13b-math1.2",
|
415 |
+
"Gryphe/MythoBoros-13b",
|
416 |
+
"CalderaAI/13B-Ouroboros",
|
417 |
+
"OpenAssistant/llama2-13b-orca-v2-8k-3166",
|
418 |
+
"heegyu/LIMA2-13b-hf",
|
419 |
+
"digitous/13B-HyperMantis",
|
420 |
+
"Gryphe/MythoLogic-13b",
|
421 |
+
"TheBloke/Airoboros-L2-13B-2.1-GPTQ",
|
422 |
+
"chargoddard/platypus2-22b-relora",
|
423 |
+
"openchat/openchat_v2",
|
424 |
+
"yeontaek/Platypus2-13B-IA3",
|
425 |
+
"stabilityai/StableBeluga-7B",
|
426 |
+
"circulus/Llama-2-7b-orca-v1",
|
427 |
+
"budecosystem/genz-13b-v2",
|
428 |
+
"TheBloke/gpt4-x-vicuna-13B-HF",
|
429 |
+
"NobodyExistsOnTheInternet/GiftedConvo13bLoraNoEcons",
|
430 |
+
"zarakiquemparte/zarafusionex-1.1-l2-7b",
|
431 |
+
"Lajonbot/tableBeluga-7B-instruct-pl-lora_unload",
|
432 |
+
"jondurbin/airoboros-13b-gpt4",
|
433 |
+
"gaodrew/gaodrew-gorgonzola-13b",
|
434 |
+
"jondurbin/airoboros-13b-gpt4-1.1",
|
435 |
+
"TheBloke/gpt4-alpaca-lora-13B-HF",
|
436 |
+
"zarakiquemparte/zarablendex-vq-l2-7b",
|
437 |
+
"openaccess-ai-collective/manticore-13b-chat-pyg",
|
438 |
+
"Lajonbot/Llama-2-13b-hf-instruct-pl-lora_unload",
|
439 |
+
"NobodyExistsOnTheInternet/PuffedLIMA13bQLORA",
|
440 |
+
"xxyyy123/10k_v1_lora_qkvo_rank28_v2",
|
441 |
+
"jondurbin/airoboros-l2-13b-gpt4-1.4.1",
|
442 |
+
"dhmeltzer/Llama-2-13b-hf-eli5-wiki-1024_r_64_alpha_16",
|
443 |
+
"NobodyExistsOnTheInternet/PuffedConvo13bLoraE4",
|
444 |
+
"yihan6324/llama2-7b-instructmining-40k-sharegpt",
|
445 |
+
"CHIH-HUNG/llama-2-13b-Open_Platypus_and_ccp_2.6w",
|
446 |
+
"Aeala/GPT4-x-Alpasta-13b",
|
447 |
+
"psmathur/orca_mini_v2_13b",
|
448 |
+
"YeungNLP/firefly-llama-13b",
|
449 |
+
"psmathur/orca_mini_v2_13b",
|
450 |
+
"zarakiquemparte/zarafusionix-l2-7b",
|
451 |
+
"yihan6324/llama2-7b-instructmining-60k-sharegpt",
|
452 |
+
"yihan6324/llama-2-7b-instructmining-60k-sharegpt",
|
453 |
+
"layoric/llama-2-13b-code-alpaca",
|
454 |
+
"bofenghuang/vigogne-13b-instruct",
|
455 |
+
"Lajonbot/vicuna-13b-v1.3-PL-lora_unload",
|
456 |
+
"lvkaokao/llama2-7b-hf-chat-lora-v3",
|
457 |
+
"ehartford/dolphin-llama-13b",
|
458 |
+
"YeungNLP/firefly-llama-13b-v1.2",
|
459 |
+
"TheBloke/Kimiko-13B-fp16",
|
460 |
+
"kevinpro/Vicuna-13B-CoT",
|
461 |
+
"eachadea/vicuna-13b-1.1",
|
462 |
+
"pillowtalks-ai/delta13b",
|
463 |
+
"TheBloke/vicuna-13B-1.1-HF",
|
464 |
+
"TheBloke/Vicuna-13B-CoT-fp16",
|
465 |
+
"lmsys/vicuna-13b-delta-v1.1",
|
466 |
+
"lmsys/vicuna-13b-v1.1",
|
467 |
+
"xxyyy123/20k_v1_lora_qkvo_rank14_v2",
|
468 |
+
"TheBloke/guanaco-13B-HF",
|
469 |
+
"TheBloke/vicuna-13b-v1.3.0-GPTQ",
|
470 |
+
"edor/Stable-Platypus2-mini-7B",
|
471 |
+
"totally-not-an-llm/EverythingLM-13b-V2-16k",
|
472 |
+
"zarakiquemparte/zaraxe-l2-7b",
|
473 |
+
"beaugogh/Llama2-7b-openorca-mc-v2",
|
474 |
+
"TheBloke/Nous-Hermes-13B-SuperHOT-8K-fp16",
|
475 |
+
"quantumaikr/QuantumLM",
|
476 |
+
"jondurbin/airoboros-13b-gpt4-1.2",
|
477 |
+
"TheBloke/robin-13B-v2-fp16",
|
478 |
+
"TFLai/llama-2-13b-4bit-alpaca-gpt4",
|
479 |
+
"yihan6324/llama2-7b-instructmining-orca-40k",
|
480 |
+
"dvruette/oasst-llama-13b-2-epochs",
|
481 |
+
"Open-Orca/LlongOrca-7B-16k",
|
482 |
+
"Aspik101/Nous-Hermes-13b-pl-lora_unload",
|
483 |
+
"ehartford/Samantha-1.11-CodeLlama-34b",
|
484 |
+
"nkpz/llama2-22b-chat-wizard-uncensored",
|
485 |
+
"bofenghuang/vigogne-13b-chat",
|
486 |
+
"beaugogh/Llama2-7b-openorca-mc-v1",
|
487 |
+
"OptimalScale/robin-13b-v2-delta",
|
488 |
+
"pe-nlp/llama-2-13b-vicuna-wizard",
|
489 |
+
"chargoddard/llama2-22b",
|
490 |
+
"gywy/llama2-13b-chinese-v1",
|
491 |
+
"frank098/Wizard-Vicuna-13B-juniper",
|
492 |
+
"IGeniusDev/llama13B-quant8-testv1-openorca-customdataset",
|
493 |
+
"CHIH-HUNG/llama-2-13b-huangyt_Fintune_1_17w-gate_up_down_proj",
|
494 |
+
"eachadea/vicuna-13b",
|
495 |
+
"yihan6324/llama2-7b-instructmining-orca-90k",
|
496 |
+
"chargoddard/llama2-22b-blocktriangular",
|
497 |
+
"luffycodes/mcq-vicuna-13b-v1.5",
|
498 |
+
"Yhyu13/chimera-inst-chat-13b-hf",
|
499 |
+
"luffycodes/mcq-vicuna-13b-v1.5",
|
500 |
+
"chargoddard/ypotryll-22b-epoch2-qlora",
|
501 |
+
"totally-not-an-llm/EverythingLM-13b-16k",
|
502 |
+
"luffycodes/mcq-hal-vicuna-13b-v1.5",
|
503 |
+
"openaccess-ai-collective/minotaur-13b",
|
504 |
+
"IGeniusDev/llama13B-quant8-testv1-openorca-customdataset",
|
505 |
+
"chargoddard/llama2-22b-blocktriangular",
|
506 |
+
"TFLai/Platypus2-13B-QLoRA-0.80-epoch",
|
507 |
+
"meta-llama/Llama-2-13b-hf",
|
508 |
+
"CHIH-HUNG/llama-2-13b-huangyt_FINETUNE2_3w-gate_up_down_proj",
|
509 |
+
"luffycodes/mcq-hal-vicuna-13b-v1.5",
|
510 |
+
"TheBloke/Llama-2-13B-fp16",
|
511 |
+
"TaylorAI/Flash-Llama-13B",
|
512 |
+
"shareAI/bimoGPT-llama2-13b",
|
513 |
+
"wahaha1987/llama_13b_sharegpt94k_fastchat",
|
514 |
+
"openchat/openchat_8192",
|
515 |
+
"CHIH-HUNG/llama-2-13b-huangyt_Fintune_1_17w-q_k_v_o_proj",
|
516 |
+
"dvruette/llama-13b-pretrained-sft-do2",
|
517 |
+
"CHIH-HUNG/llama-2-13b-alpaca-test",
|
518 |
+
"OpenBuddy/openbuddy-llama2-13b-v11.1-bf16",
|
519 |
+
"CHIH-HUNG/llama-2-13b-FINETUNE2_TEST_2.2w",
|
520 |
+
"project-baize/baize-v2-13b",
|
521 |
+
"jondurbin/airoboros-l2-13b-gpt4-m2.0",
|
522 |
+
"yeontaek/Platypus2xOpenOrca-13B-LoRa-v2",
|
523 |
+
"CHIH-HUNG/llama-2-13b-huangyt_FINETUNE2_3w",
|
524 |
+
"xzuyn/Alpacino-SuperCOT-13B",
|
525 |
+
"jondurbin/airoboros-l2-13b-gpt4-2.0",
|
526 |
+
"aiplanet/effi-13b",
|
527 |
+
"clibrain/Llama-2-13b-ft-instruct-es",
|
528 |
+
"CHIH-HUNG/llama-2-13b-huangyt_Fintune_1_17w",
|
529 |
+
"bofenghuang/vigogne-2-7b-instruct",
|
530 |
+
"CHIH-HUNG/llama-2-13b-huangyt_FINETUNE2_3w-q_k_v_o_proj",
|
531 |
+
"bofenghuang/vigogne-2-7b-chat",
|
532 |
+
"aiplanet/effi-13b",
|
533 |
+
"haonan-li/bactrian-x-llama-13b-merged",
|
534 |
+
"beaugogh/Llama2-7b-sharegpt4",
|
535 |
+
"HWERI/Llama2-7b-sharegpt4",
|
536 |
+
"jondurbin/airoboros-13b-gpt4-1.3",
|
537 |
+
"jondurbin/airoboros-c34b-2.1",
|
538 |
+
"junelee/wizard-vicuna-13b",
|
539 |
+
"TheBloke/wizard-vicuna-13B-HF",
|
540 |
+
"Open-Orca/OpenOrca-Preview1-13B",
|
541 |
+
"TheBloke/h2ogpt-oasst1-512-30B-HF",
|
542 |
+
"TheBloke/Llama-2-13B-GPTQ",
|
543 |
+
"camel-ai/CAMEL-13B-Combined-Data",
|
544 |
+
"lmsys/vicuna-7b-v1.5",
|
545 |
+
"lmsys/vicuna-7b-v1.5-16k",
|
546 |
+
"lmsys/vicuna-7b-v1.5",
|
547 |
+
"ausboss/llama-13b-supercot",
|
548 |
+
"TheBloke/tulu-13B-fp16",
|
549 |
+
"NousResearch/Nous-Hermes-llama-2-7b",
|
550 |
+
"jlevin/guanaco-13b-llama-2",
|
551 |
+
"lmsys/vicuna-7b-v1.5-16k",
|
552 |
+
"dvruette/llama-13b-pretrained",
|
553 |
+
"nkpz/llama2-22b-daydreamer-v3",
|
554 |
+
"dvruette/llama-13b-pretrained-dropout",
|
555 |
+
"jondurbin/airoboros-l2-13b-2.1",
|
556 |
+
"LLMs/Stable-Vicuna-13B",
|
557 |
+
"64bits/LexPodLM-13B",
|
558 |
+
"lizhuang144/llama_mirror_13b_v1.0",
|
559 |
+
"TheBloke/stable-vicuna-13B-HF",
|
560 |
+
"zarakiquemparte/zaraxls-l2-7b",
|
561 |
+
"TheBloke/Llama-2-13B-GPTQ",
|
562 |
+
"Kiddyz/testlm-3",
|
563 |
+
"migtissera/Synthia-7B",
|
564 |
+
"zarakiquemparte/zarablend-l2-7b",
|
565 |
+
"mosaicml/mpt-30b-instruct",
|
566 |
+
"PocketDoc/Dans-PileOfSets-Mk1-llama-13b-merged",
|
567 |
+
"vonjack/Qwen-LLaMAfied-HFTok-7B-Chat",
|
568 |
+
"l3utterfly/llama2-7b-layla",
|
569 |
+
"Lajonbot/vicuna-7b-v1.5-PL-lora_unload",
|
570 |
+
"heegyu/LIMA-13b-hf",
|
571 |
+
"frank098/WizardLM_13B_juniper",
|
572 |
+
"ashercn97/manatee-7b",
|
573 |
+
"chavinlo/gpt4-x-alpaca",
|
574 |
+
"PocketDoc/Dans-PersonalityEngine-13b",
|
575 |
+
"ehartford/WizardLM-1.0-Uncensored-CodeLlama-34b",
|
576 |
+
"digitous/Alpacino13b",
|
577 |
+
"edor/Hermes-Platypus2-mini-7B",
|
578 |
+
"lvkaokao/llama2-7b-hf-chat-lora-v2",
|
579 |
+
"Kiddyz/testlm-1-1",
|
580 |
+
"Kiddyz/testlm",
|
581 |
+
"Kiddyz/testlm-1",
|
582 |
+
"Kiddyz/testlm2",
|
583 |
+
"radm/Philosophy-Platypus2-13b",
|
584 |
+
"aiplanet/effi-13b",
|
585 |
+
"Harshvir/Llama-2-7B-physics",
|
586 |
+
"YeungNLP/firefly-ziya-13b",
|
587 |
+
"LinkSoul/Chinese-Llama-2-7b",
|
588 |
+
"PeanutJar/LLaMa-2-PeanutButter_v10-7B",
|
589 |
+
"OpenBuddy/openbuddy-llama2-13b-v11-bf16",
|
590 |
+
"StudentLLM/Alpagasus-2-13B-QLoRA-pipeline",
|
591 |
+
"meta-llama/Llama-2-13b-hf",
|
592 |
+
"WizardLM/WizardCoder-Python-34B-V1.0",
|
593 |
+
"dvruette/llama-13b-pretrained-sft-epoch-1",
|
594 |
+
"camel-ai/CAMEL-13B-Role-Playing-Data",
|
595 |
+
"ziqingyang/chinese-llama-2-13b",
|
596 |
+
"rombodawg/LosslessMegaCoder-llama2-7b-mini",
|
597 |
+
"TheBloke/koala-13B-HF",
|
598 |
+
"lmsys/vicuna-7b-delta-v1.1",
|
599 |
+
"eachadea/vicuna-7b-1.1",
|
600 |
+
"Ejafa/vicuna_7B_vanilla_1.1",
|
601 |
+
"lvkaokao/llama2-7b-hf-chat-lora",
|
602 |
+
"OpenBuddy/openbuddy-atom-13b-v9-bf16",
|
603 |
+
"Norquinal/llama-2-7b-claude-chat-rp",
|
604 |
+
"Danielbrdz/Barcenas-7b",
|
605 |
+
"heegyu/WizardVicuna2-13b-hf",
|
606 |
+
"meta-llama/Llama-2-7b-chat-hf",
|
607 |
+
"PeanutJar/LLaMa-2-PeanutButter_v14-7B",
|
608 |
+
"PeanutJar/LLaMa-2-PeanutButter_v4-7B",
|
609 |
+
"davzoku/cria-llama2-7b-v1.3",
|
610 |
+
"OpenBuddy/openbuddy-atom-13b-v9-bf16",
|
611 |
+
"lvkaokao/llama2-7b-hf-instruction-lora",
|
612 |
+
"Tap-M/Luna-AI-Llama2-Uncensored",
|
613 |
+
"ehartford/Samantha-1.11-7b",
|
614 |
+
"WizardLM/WizardCoder-Python-34B-V1.0",
|
615 |
+
"TheBloke/Manticore-13B-Chat-Pyg-Guanaco-SuperHOT-8K-GPTQ",
|
616 |
+
"Mikael110/llama-2-7b-guanaco-fp16",
|
617 |
+
"garage-bAInd/Platypus2-7B",
|
618 |
+
"PeanutJar/LLaMa-2-PeanutButter_v18_B-7B",
|
619 |
+
"mosaicml/mpt-30b",
|
620 |
+
"garage-bAInd/Platypus2-7B",
|
621 |
+
"huggingface/llama-13b",
|
622 |
+
"dvruette/oasst-llama-13b-1000-steps",
|
623 |
+
"jordiclive/gpt4all-alpaca-oa-codealpaca-lora-13b",
|
624 |
+
"huggyllama/llama-13b",
|
625 |
+
"Voicelab/trurl-2-7b",
|
626 |
+
"TFLai/llama-13b-4bit-alpaca",
|
627 |
+
"gywy/llama2-13b-chinese-v2",
|
628 |
+
"lmsys/longchat-13b-16k",
|
629 |
+
"Aspik101/trurl-2-7b-pl-instruct_unload",
|
630 |
+
"WizardLM/WizardMath-7B-V1.0",
|
631 |
+
"Norquinal/llama-2-7b-claude-chat",
|
632 |
+
"TheTravellingEngineer/llama2-7b-chat-hf-dpo",
|
633 |
+
"HuggingFaceH4/starchat-beta",
|
634 |
+
"joehuangx/spatial-vicuna-7b-v1.5-LoRA",
|
635 |
+
"conceptofmind/LLongMA-2-13b-16k",
|
636 |
+
"tianyil1/denas-llama2",
|
637 |
+
"lmsys/vicuna-7b-v1.3",
|
638 |
+
"conceptofmind/LLongMA-2-13b-16k",
|
639 |
+
"openchat/opencoderplus",
|
640 |
+
"ajibawa-2023/scarlett-7b",
|
641 |
+
"dhmeltzer/llama-7b-SFT_eli5_wiki65k_1024_r_64_alpha_16_merged",
|
642 |
+
"psyche/kollama2-7b-v2",
|
643 |
+
"heegyu/LIMA2-7b-hf",
|
644 |
+
"dhmeltzer/llama-7b-SFT-qlora-eli5-wiki_DPO_ds_RM_top_2_1024_r_64_alpha_16",
|
645 |
+
"abhishek/llama2guanacotest",
|
646 |
+
"jondurbin/airoboros-l2-7b-2.1",
|
647 |
+
"llama-anon/instruct-13b",
|
648 |
+
"FelixChao/vicuna-7B-physics",
|
649 |
+
"Aspik101/Llama-2-7b-hf-instruct-pl-lora_unload",
|
650 |
+
"shibing624/chinese-alpaca-plus-13b-hf",
|
651 |
+
"davzoku/cria-llama2-7b-v1.3_peft",
|
652 |
+
"quantumaikr/llama-2-7b-hf-guanaco-1k",
|
653 |
+
"togethercomputer/Llama-2-7B-32K-Instruct",
|
654 |
+
"sia-ai/llama-2-7b-1-percent-open-orca-1000-steps-v0",
|
655 |
+
"TheTravellingEngineer/llama2-7b-hf-guanaco",
|
656 |
+
"Lajonbot/Llama-2-7b-chat-hf-instruct-pl-lora_unload",
|
657 |
+
"jondurbin/airoboros-l2-7b-gpt4-1.4.1",
|
658 |
+
"wahaha1987/llama_7b_sharegpt94k_fastchat",
|
659 |
+
"FelixChao/vicuna-7B-chemical",
|
660 |
+
"TinyPixel/llama2-7b-oa",
|
661 |
+
"chaoyi-wu/MedLLaMA_13B",
|
662 |
+
"edor/Platypus2-mini-7B",
|
663 |
+
"RoversX/llama-2-7b-hf-small-shards-Samantha-V1-SFT",
|
664 |
+
"venkycs/llama-v2-7b-32kC-Security",
|
665 |
+
"psyche/kollama2-7b",
|
666 |
+
"Fredithefish/Guanaco-7B-Uncensored",
|
667 |
+
"TheTravellingEngineer/llama2-7b-chat-hf-guanaco",
|
668 |
+
"ehartford/WizardLM-13B-Uncensored",
|
669 |
+
"PocketDoc/Dans-CreepingSenseOfDoom",
|
670 |
+
"wenge-research/yayi-7b-llama2",
|
671 |
+
"georgesung/llama2_7b_chat_uncensored",
|
672 |
+
"TinyPixel/llama2-7b-instruct",
|
673 |
+
"quantumaikr/QuantumLM-7B",
|
674 |
+
"xzuyn/MedicWizard-7B",
|
675 |
+
"wenge-research/yayi-7b-llama2",
|
676 |
+
"TinyPixel/lima-test",
|
677 |
+
"elyza/ELYZA-japanese-Llama-2-7b-instruct",
|
678 |
+
"lgaalves/llama-2-7b-hf_open-platypus",
|
679 |
+
"ziqingyang/chinese-alpaca-2-7b",
|
680 |
+
"TehVenom/Pygmalion-Vicuna-1.1-7b",
|
681 |
+
"meta-llama/Llama-2-7b-hf",
|
682 |
+
"bongchoi/test-llama2-7b",
|
683 |
+
"TaylorAI/Flash-Llama-7B",
|
684 |
+
"TheTravellingEngineer/llama2-7b-chat-hf-v2",
|
685 |
+
"TheTravellingEngineer/llama2-7b-chat-hf-v4",
|
686 |
+
"kashif/stack-llama-2",
|
687 |
+
"PeanutJar/LLaMa-2-PeanutButter_v18_A-7B",
|
688 |
+
"ToolBench/ToolLLaMA-7b-LoRA",
|
689 |
+
"Monero/WizardLM-13b-OpenAssistant-Uncensored",
|
690 |
+
"TheTravellingEngineer/llama2-7b-chat-hf-v2",
|
691 |
+
"TheTravellingEngineer/llama2-7b-chat-hf-v4",
|
692 |
+
"mrm8488/llama-2-coder-7b",
|
693 |
+
"elyza/ELYZA-japanese-Llama-2-7b-fast-instruct",
|
694 |
+
"clibrain/Llama-2-7b-ft-instruct-es",
|
695 |
+
"medalpaca/medalpaca-7b",
|
696 |
+
"TheBloke/tulu-7B-fp16",
|
697 |
+
"OpenBuddy/openbuddy-openllama-13b-v7-fp16",
|
698 |
+
"TaylorAI/FLAN-Llama-7B-2_Llama2-7B-Flash_868_full_model",
|
699 |
+
"Aspik101/vicuna-7b-v1.3-instruct-pl-lora_unload",
|
700 |
+
"jondurbin/airoboros-l2-7b-gpt4-2.0",
|
701 |
+
"dhmeltzer/llama-7b-SFT_ds_eli5_1024_r_64_alpha_16_merged",
|
702 |
+
"GOAT-AI/GOAT-7B-Community",
|
703 |
+
"AtomEchoAI/AtomGPT_56k",
|
704 |
+
"julianweng/Llama-2-7b-chat-orcah",
|
705 |
+
"TehVenom/Pygmalion-13b-Merged",
|
706 |
+
"jondurbin/airoboros-7b-gpt4-1.1",
|
707 |
+
"dhmeltzer/llama-7b-SFT_ds_wiki65k_1024_r_64_alpha_16_merged",
|
708 |
+
"bofenghuang/vigogne-7b-chat",
|
709 |
+
"lmsys/longchat-7b-v1.5-32k",
|
710 |
+
"jondurbin/airoboros-l2-7b-gpt4-m2.0",
|
711 |
+
"synapsoft/Llama-2-7b-chat-hf-flan2022-1.2M",
|
712 |
+
"jondurbin/airoboros-7b-gpt4-1.4",
|
713 |
+
"Charlie911/vicuna-7b-v1.5-lora-mctaco",
|
714 |
+
"yihan6324/instructmining-platypus-15k",
|
715 |
+
"meta-llama/Llama-2-7b-hf",
|
716 |
+
"TheTravellingEngineer/llama2-7b-chat-hf-v3",
|
717 |
+
"quantumaikr/KoreanLM-hf",
|
718 |
+
"openthaigpt/openthaigpt-1.0.0-alpha-7b-chat-ckpt-hf",
|
719 |
+
"TheBloke/Llama-2-7B-GPTQ",
|
720 |
+
"TheBloke/Llama-2-7B-GPTQ",
|
721 |
+
"LLMs/AlpacaGPT4-7B-elina",
|
722 |
+
"ehartford/Wizard-Vicuna-7B-Uncensored",
|
723 |
+
"TheBloke/Wizard-Vicuna-7B-Uncensored-HF",
|
724 |
+
"TheTravellingEngineer/llama2-7b-chat-hf-v3",
|
725 |
+
"golaxy/gowizardlm",
|
726 |
+
"ehartford/dolphin-llama2-7b",
|
727 |
+
"CHIH-HUNG/llama-2-7b-dolphin_10w-test",
|
728 |
+
"mncai/chatdoctor",
|
729 |
+
"psyche/kollama2-7b-v3",
|
730 |
+
"jondurbin/airoboros-7b-gpt4",
|
731 |
+
"jondurbin/airoboros-7b",
|
732 |
+
"TheBloke/airoboros-7b-gpt4-fp16",
|
733 |
+
"mosaicml/mpt-7b-8k-chat",
|
734 |
+
"elyza/ELYZA-japanese-Llama-2-7b",
|
735 |
+
"bofenghuang/vigogne-7b-instruct",
|
736 |
+
"jxhong/CAlign-alpaca-7b",
|
737 |
+
"golaxy/goims",
|
738 |
+
"jondurbin/airoboros-7b-gpt4-1.2",
|
739 |
+
"jphme/orca_mini_v2_ger_7b",
|
740 |
+
"psmathur/orca_mini_v2_7b",
|
741 |
+
"notstoic/PygmalionCoT-7b",
|
742 |
+
"golaxy/gogpt2-13b",
|
743 |
+
"golaxy/gogpt2-13b-chat",
|
744 |
+
"togethercomputer/LLaMA-2-7B-32K",
|
745 |
+
"TheBloke/wizardLM-7B-HF",
|
746 |
+
"keyfan/vicuna-chinese-replication-v1.1",
|
747 |
+
"golaxy/gogpt2-7b",
|
748 |
+
"aiplanet/effi-7b",
|
749 |
+
"arver/llama7b-qlora",
|
750 |
+
"titan087/OpenLlama13B-Guanaco",
|
751 |
+
"chavinlo/alpaca-native",
|
752 |
+
"project-baize/baize-healthcare-lora-7B",
|
753 |
+
"AlpinDale/pygmalion-instruct",
|
754 |
+
"openlm-research/open_llama_13b",
|
755 |
+
"jondurbin/airoboros-7b-gpt4-1.3",
|
756 |
+
"elyza/ELYZA-japanese-Llama-2-7b-fast",
|
757 |
+
"jondurbin/airoboros-gpt-3.5-turbo-100k-7b",
|
758 |
+
"uukuguy/speechless-codellama-orca-13b",
|
759 |
+
"bigcode/starcoderplus",
|
760 |
+
"TheBloke/guanaco-7B-HF",
|
761 |
+
"Neko-Institute-of-Science/metharme-7b",
|
762 |
+
"TigerResearch/tigerbot-7b-base",
|
763 |
+
"golaxy/gogpt-7b",
|
764 |
+
"togethercomputer/LLaMA-2-7B-32K",
|
765 |
+
"yhyhy3/open_llama_7b_v2_med_instruct",
|
766 |
+
"ajibawa-2023/carl-7b",
|
767 |
+
"stabilityai/stablelm-base-alpha-7b-v2",
|
768 |
+
"conceptofmind/LLongMA-2-7b-16k",
|
769 |
+
"TehVenom/Pygmalion_AlpacaLora-7b",
|
770 |
+
"jondurbin/airoboros-7b-gpt4-1.4.1-qlora",
|
771 |
+
"wannaphong/openthaigpt-0.1.0-beta-full-model_for_open_llm_leaderboard",
|
772 |
+
"ausboss/llama7b-wizardlm-unfiltered",
|
773 |
+
"project-baize/baize-v2-7b",
|
774 |
+
"LMFlow/Robin-v2",
|
775 |
+
"HanningZhang/Robin-v2",
|
776 |
+
"LMFlow/Robin-7b-v2",
|
777 |
+
"OptimalScale/robin-7b-v2-delta",
|
778 |
+
"uukuguy/speechless-codellama-platypus-13b",
|
779 |
+
"jerryjalapeno/nart-100k-7b",
|
780 |
+
"wenge-research/yayi-13b-llama2",
|
781 |
+
"fireballoon/baichuan-vicuna-chinese-7b",
|
782 |
+
"jlevin/guanaco-unchained-llama-2-7b",
|
783 |
+
"csitfun/llama-7b-logicot",
|
784 |
+
"DevaMalla/llama7b_alpaca_1gpu_bf16",
|
785 |
+
"WeOpenML/PandaLM-Alpaca-7B-v1",
|
786 |
+
"illuin/test-custom-llama",
|
787 |
+
"yeontaek/WizardCoder-Python-13B-LoRa",
|
788 |
+
"ashercn97/giraffe-7b",
|
789 |
+
"mosaicml/mpt-7b-chat",
|
790 |
+
"abhishek/autotrain-llama-alpaca-peft-52508123785",
|
791 |
+
"Neko-Institute-of-Science/pygmalion-7b",
|
792 |
+
"TFLai/llama-7b-4bit-alpaca",
|
793 |
+
"huggingface/llama-7b",
|
794 |
+
"TheBloke/Planner-7B-fp16",
|
795 |
+
"shibing624/chinese-llama-plus-13b-hf",
|
796 |
+
"AGI-inc/lora_moe_7b_baseline",
|
797 |
+
"DevaMalla/llama-base-7b",
|
798 |
+
"AGI-inc/lora_moe_7b",
|
799 |
+
"togethercomputer/GPT-JT-6B-v0",
|
800 |
+
"ehartford/WizardLM-7B-Uncensored",
|
801 |
+
"shibing624/chinese-alpaca-plus-7b-hf",
|
802 |
+
"beomi/llama-2-ko-7b",
|
803 |
+
"mosaicml/mpt-7b-8k-instruct",
|
804 |
+
"Enno-Ai/ennodata-7b",
|
805 |
+
"mosaicml/mpt-7b-instruct",
|
806 |
+
"facebook/opt-iml-max-30b",
|
807 |
+
"WeOpenML/Alpaca-7B-v1",
|
808 |
+
"TheBloke/Project-Baize-v2-7B-GPTQ",
|
809 |
+
"codellama/CodeLlama-13b-Instruct-hf",
|
810 |
+
"TheBloke/CodeLlama-13B-Instruct-fp16",
|
811 |
+
"facebook/galactica-30b",
|
812 |
+
"FreedomIntelligence/phoenix-inst-chat-7b",
|
813 |
+
"openlm-research/open_llama_7b_v2",
|
814 |
+
"GeorgiaTechResearchInstitute/galpaca-30b",
|
815 |
+
"THUDM/chatglm2-6b",
|
816 |
+
"togethercomputer/GPT-JT-6B-v1",
|
817 |
+
"TheBloke/koala-7B-HF",
|
818 |
+
"nathan0/mpt_delta_tuned_model_v3",
|
819 |
+
"nathan0/mpt_delta_tuned_model_v2",
|
820 |
+
"GeorgiaTechResearchInstitute/galpaca-30b",
|
821 |
+
"JosephusCheung/Guanaco",
|
822 |
+
"shareAI/CodeLLaMA-chat-13b-Chinese",
|
823 |
+
"TigerResearch/tigerbot-7b-sft",
|
824 |
+
"Writer/InstructPalmyra-20b",
|
825 |
+
"OpenAssistant/codellama-13b-oasst-sft-v10",
|
826 |
+
"bigscience/bloomz-7b1-mt",
|
827 |
+
"nathan0/mpt_delta_tuned_model_v3",
|
828 |
+
"VMware/open-llama-7b-open-instruct",
|
829 |
+
"baichuan-inc/Baichuan-7B",
|
830 |
+
"anas-awadalla/mpt-7b",
|
831 |
+
"mosaicml/mpt-7b",
|
832 |
+
"bigscience/bloomz-7b1",
|
833 |
+
"ziqingyang/chinese-llama-2-7b",
|
834 |
+
"OpenAssistant/codellama-13b-oasst-sft-v10",
|
835 |
+
"wenge-research/yayi-7b",
|
836 |
+
"tiiuae/falcon-7b",
|
837 |
+
"togethercomputer/RedPajama-INCITE-Instruct-7B-v0.1",
|
838 |
+
"togethercomputer/RedPajama-INCITE-7B-Instruct",
|
839 |
+
"TheBloke/landmark-attention-llama7b-fp16",
|
840 |
+
"togethercomputer/GPT-JT-Moderation-6B",
|
841 |
+
"h2oai/h2ogpt-gm-oasst1-en-1024-20b",
|
842 |
+
"dvruette/gpt-neox-20b-full-precision",
|
843 |
+
"TehVenom/Moderator-Chan_GPT-JT-6b",
|
844 |
+
"dvruette/oasst-gpt-neox-20b-1000-steps",
|
845 |
+
"AlekseyKorshuk/pygmalion-6b-vicuna-chatml",
|
846 |
+
"facebook/opt-66b",
|
847 |
+
"Salesforce/codegen-16B-nl",
|
848 |
+
"Vmware/open-llama-7b-v2-open-instruct",
|
849 |
+
"mosaicml/mpt-7b-storywriter",
|
850 |
+
"acrastt/Marx-3B-V2",
|
851 |
+
"openlm-research/open_llama_7b",
|
852 |
+
"Fredithefish/ReasonixPajama-3B-HF",
|
853 |
+
"togethercomputer/GPT-NeoXT-Chat-Base-20B",
|
854 |
+
"psmathur/orca_mini_13b",
|
855 |
+
"RWKV/rwkv-raven-14b",
|
856 |
+
"h2oai/h2ogpt-oasst1-512-20b",
|
857 |
+
"acrastt/Marx-3B",
|
858 |
+
"klosax/open_llama_13b_600bt_preview",
|
859 |
+
"synapsoft/Llama-2-7b-hf-flan2022-1.2M",
|
860 |
+
"OpenAssistant/oasst-sft-1-pythia-12b",
|
861 |
+
"golaxy/gogpt-7b-bloom",
|
862 |
+
"Writer/palmyra-large",
|
863 |
+
"psmathur/orca_mini_7b",
|
864 |
+
"dvruette/oasst-pythia-12b-6000-steps",
|
865 |
+
"NousResearch/CodeLlama-13b-hf",
|
866 |
+
"codellama/CodeLlama-13b-hf",
|
867 |
+
"h2oai/h2ogpt-gm-oasst1-multilang-1024-20b",
|
868 |
+
"VMware/open-llama-0.7T-7B-open-instruct-v1.1",
|
869 |
+
"dvruette/oasst-pythia-12b-flash-attn-5000-steps",
|
870 |
+
"dvruette/oasst-gpt-neox-20b-3000-steps",
|
871 |
+
"RobbeD/OpenLlama-Platypus-3B",
|
872 |
+
"facebook/opt-30b",
|
873 |
+
"acrastt/Puma-3B",
|
874 |
+
"OpenAssistant/oasst-sft-4-pythia-12b-epoch-3.5",
|
875 |
+
"dvruette/oasst-pythia-12b-pretrained-sft",
|
876 |
+
"digitous/GPT-R",
|
877 |
+
"acrastt/Griffin-3B",
|
878 |
+
"togethercomputer/RedPajama-INCITE-Base-7B-v0.1",
|
879 |
+
"togethercomputer/RedPajama-INCITE-7B-Base",
|
880 |
+
"CobraMamba/mamba-gpt-3b-v3",
|
881 |
+
"Danielbrdz/CodeBarcenas-7b",
|
882 |
+
"l3utterfly/open-llama-3b-v2-layla",
|
883 |
+
"CobraMamba/mamba-gpt-3b-v2",
|
884 |
+
"OpenAssistant/pythia-12b-sft-v8-7k-steps",
|
885 |
+
"KoboldAI/GPT-NeoX-20B-Erebus",
|
886 |
+
"RobbeD/Orca-Platypus-3B",
|
887 |
+
"h2oai/h2ogpt-gm-oasst1-en-1024-12b",
|
888 |
+
"OpenAssistant/pythia-12b-sft-v8-2.5k-steps",
|
889 |
+
"AlekseyKorshuk/chatml-pyg-v1",
|
890 |
+
"togethercomputer/RedPajama-INCITE-Chat-7B-v0.1",
|
891 |
+
"togethercomputer/RedPajama-INCITE-7B-Chat",
|
892 |
+
"digitous/Javelin-R",
|
893 |
+
"dvruette/oasst-pythia-12b-reference",
|
894 |
+
"EleutherAI/gpt-neox-20b",
|
895 |
+
"KoboldAI/fairseq-dense-13B",
|
896 |
+
"OpenAssistant/pythia-12b-sft-v8-rlhf-2k-steps",
|
897 |
+
"codellama/CodeLlama-7b-Instruct-hf",
|
898 |
+
"digitous/Javelin-GPTJ",
|
899 |
+
"KoboldAI/GPT-NeoX-20B-Skein",
|
900 |
+
"digitous/Javalion-R",
|
901 |
+
"h2oai/h2ogpt-oasst1-512-12b",
|
902 |
+
"acrastt/Bean-3B",
|
903 |
+
"KoboldAI/GPT-J-6B-Skein",
|
904 |
+
"nomic-ai/gpt4all-j",
|
905 |
+
"databricks/dolly-v2-12b",
|
906 |
+
"TehVenom/Dolly_Shygmalion-6b-Dev_V8P2",
|
907 |
+
"databricks/dolly-v2-7b",
|
908 |
+
"Aspik101/WizardVicuna-Uncensored-3B-instruct-PL-lora_unload",
|
909 |
+
"digitous/Adventien-GPTJ",
|
910 |
+
"openlm-research/open_llama_3b_v2",
|
911 |
+
"RWKV/rwkv-4-14b-pile",
|
912 |
+
"Lazycuber/Janemalion-6B",
|
913 |
+
"OpenAssistant/pythia-12b-pre-v8-12.5k-steps",
|
914 |
+
"digitous/Janin-R",
|
915 |
+
"kfkas/Llama-2-ko-7b-Chat",
|
916 |
+
"heegyu/WizardVicuna-Uncensored-3B-0719",
|
917 |
+
"h2oai/h2ogpt-gm-oasst1-en-1024-open-llama-7b-preview-400bt",
|
918 |
+
"TaylorAI/Flash-Llama-3B",
|
919 |
+
"kfkas/Llama-2-ko-7b-Chat",
|
920 |
+
"digitous/Skegma-GPTJ",
|
921 |
+
"digitous/Javalion-GPTJ",
|
922 |
+
"Pirr/pythia-13b-deduped-green_devil",
|
923 |
+
"TehVenom/PPO_Shygmalion-V8p4_Dev-6b",
|
924 |
+
"dvruette/oasst-pythia-6.9b-4000-steps",
|
925 |
+
"heegyu/WizardVicuna-3B-0719",
|
926 |
+
"psmathur/orca_mini_3b",
|
927 |
+
"OpenAssistant/galactica-6.7b-finetuned",
|
928 |
+
"frank098/orca_mini_3b_juniper",
|
929 |
+
"PygmalionAI/pygmalion-6b",
|
930 |
+
"TehVenom/PPO_Pygway-V8p4_Dev-6b",
|
931 |
+
"TFLai/gpt-neox-20b-4bit-alpaca",
|
932 |
+
"Corianas/gpt-j-6B-Dolly",
|
933 |
+
"TehVenom/Dolly_Shygmalion-6b",
|
934 |
+
"digitous/Janin-GPTJ",
|
935 |
+
"TehVenom/GPT-J-Pyg_PPO-6B-Dev-V8p4",
|
936 |
+
"EleutherAI/gpt-j-6b",
|
937 |
+
"KoboldAI/GPT-J-6B-Shinen",
|
938 |
+
"TehVenom/Dolly_Malion-6b",
|
939 |
+
"TehVenom/ChanMalion",
|
940 |
+
"Salesforce/codegen-6B-nl",
|
941 |
+
"Fredithefish/RedPajama-INCITE-Chat-3B-Instruction-Tuning-with-GPT-4",
|
942 |
+
"KoboldAI/GPT-J-6B-Janeway",
|
943 |
+
"togethercomputer/RedPajama-INCITE-Chat-3B-v1",
|
944 |
+
"togethercomputer/Pythia-Chat-Base-7B",
|
945 |
+
"heegyu/RedTulu-Uncensored-3B-0719",
|
946 |
+
"KoboldAI/PPO_Pygway-6b-Mix",
|
947 |
+
"KoboldAI/OPT-13B-Erebus",
|
948 |
+
"KoboldAI/fairseq-dense-6.7B",
|
949 |
+
"EleutherAI/pythia-12b-deduped",
|
950 |
+
"pszemraj/pythia-6.9b-HC3",
|
951 |
+
"Fredithefish/Guanaco-3B-Uncensored-v2",
|
952 |
+
"facebook/opt-13b",
|
953 |
+
"TehVenom/GPT-J-Pyg_PPO-6B",
|
954 |
+
"EleutherAI/pythia-6.9b-deduped",
|
955 |
+
"Devio/test-1400",
|
956 |
+
"Fredithefish/Guanaco-3B-Uncensored",
|
957 |
+
"codellama/CodeLlama-7b-hf",
|
958 |
+
"acrastt/RedPajama-INCITE-Chat-Instruct-3B-V1",
|
959 |
+
"Fredithefish/ScarletPajama-3B-HF",
|
960 |
+
"KoboldAI/OPT-13B-Nerybus-Mix",
|
961 |
+
"YeungNLP/firefly-bloom-7b1",
|
962 |
+
"DanielSc4/RedPajama-INCITE-Chat-3B-v1-RL-LoRA-8bit-test1",
|
963 |
+
"klosax/open_llama_7b_400bt_preview",
|
964 |
+
"KoboldAI/OPT-13B-Nerys-v2",
|
965 |
+
"TehVenom/PPO_Shygmalion-6b",
|
966 |
+
"amazon/LightGPT",
|
967 |
+
"KnutJaegersberg/black_goo_recipe_c",
|
968 |
+
"NousResearch/CodeLlama-7b-hf",
|
969 |
+
"togethercomputer/RedPajama-INCITE-Instruct-3B-v1",
|
970 |
+
"heegyu/WizardVicuna-open-llama-3b-v2",
|
971 |
+
"bigscience/bloom-7b1",
|
972 |
+
"Devio/test-22B",
|
973 |
+
"RWKV/rwkv-raven-7b",
|
974 |
+
"hakurei/instruct-12b",
|
975 |
+
"CobraMamba/mamba-gpt-3b",
|
976 |
+
"KnutJaegersberg/black_goo_recipe_a",
|
977 |
+
"acrastt/OmegLLaMA-3B",
|
978 |
+
"codellama/CodeLlama-7b-Instruct-hf",
|
979 |
+
"h2oai/h2ogpt-oig-oasst1-512-6_9b",
|
980 |
+
"KoboldAI/OPT-6.7B-Erebus",
|
981 |
+
"facebook/opt-6.7b",
|
982 |
+
"KnutJaegersberg/black_goo_recipe_d",
|
983 |
+
"KnutJaegersberg/LLongMA-3b-LIMA",
|
984 |
+
"KnutJaegersberg/black_goo_recipe_b",
|
985 |
+
"KoboldAI/OPT-6.7B-Nerybus-Mix",
|
986 |
+
"health360/Healix-3B",
|
987 |
+
"EleutherAI/pythia-12b",
|
988 |
+
"Fredithefish/RedPajama-INCITE-Chat-3B-ShareGPT-11K",
|
989 |
+
"GeorgiaTechResearchInstitute/galactica-6.7b-evol-instruct-70k",
|
990 |
+
"h2oai/h2ogpt-oig-oasst1-256-6_9b",
|
991 |
+
"ikala/bloom-zh-3b-chat",
|
992 |
+
"Taekyoon/llama2-ko-7b-test",
|
993 |
+
"anhnv125/pygmalion-6b-roleplay",
|
994 |
+
"TehVenom/DiffMerge_Pygmalion_Main-onto-V8P4",
|
995 |
+
"KoboldAI/OPT-6B-nerys-v2",
|
996 |
+
"Lazycuber/pyg-instruct-wizardlm",
|
997 |
+
"Devio/testC",
|
998 |
+
"KoboldAI/OPT-30B-Erebus",
|
999 |
+
"Fredithefish/CrimsonPajama",
|
1000 |
+
"togethercomputer/RedPajama-INCITE-Base-3B-v1",
|
1001 |
+
"bigscience/bloomz-3b",
|
1002 |
+
"conceptofmind/Open-LLongMA-3b",
|
1003 |
+
"RWKV/rwkv-4-7b-pile",
|
1004 |
+
"openlm-research/open_llama_3b",
|
1005 |
+
"ewof/koishi-instruct-3b",
|
1006 |
+
"DanielSc4/RedPajama-INCITE-Chat-3B-v1-FT-LoRA-8bit-test1",
|
1007 |
+
"cerebras/Cerebras-GPT-13B",
|
1008 |
+
"EleutherAI/pythia-6.7b",
|
1009 |
+
"aisquared/chopt-2_7b",
|
1010 |
+
"Azure99/blossom-v1-3b",
|
1011 |
+
"PSanni/Deer-3b",
|
1012 |
+
"bertin-project/bertin-gpt-j-6B-alpaca",
|
1013 |
+
"OpenBuddy/openbuddy-openllama-3b-v10-bf16",
|
1014 |
+
"KoboldAI/fairseq-dense-2.7B",
|
1015 |
+
"ehartford/CodeLlama-34b-Instruct-hf",
|
1016 |
+
"codellama/CodeLlama-34b-Instruct-hf",
|
1017 |
+
"TheBloke/CodeLlama-34B-Instruct-fp16",
|
1018 |
+
"h2oai/h2ogpt-gm-oasst1-en-2048-open-llama-7b-preview-300bt-v2",
|
1019 |
+
"openlm-research/open_llama_7b_700bt_preview",
|
1020 |
+
"NbAiLab/nb-gpt-j-6B-alpaca",
|
1021 |
+
"KoboldAI/OPT-2.7B-Erebus",
|
1022 |
+
"Writer/camel-5b-hf",
|
1023 |
+
"EleutherAI/pythia-2.7b",
|
1024 |
+
"facebook/xglm-7.5B",
|
1025 |
+
"EleutherAI/pythia-2.8b-deduped",
|
1026 |
+
"klosax/open_llama_3b_350bt_preview",
|
1027 |
+
"klosax/openllama-3b-350bt",
|
1028 |
+
"KoboldAI/OPT-2.7B-Nerybus-Mix",
|
1029 |
+
"KoboldAI/GPT-J-6B-Adventure",
|
1030 |
+
"cerebras/Cerebras-GPT-6.7B",
|
1031 |
+
"TFLai/pythia-2.8b-4bit-alpaca",
|
1032 |
+
"facebook/opt-2.7b",
|
1033 |
+
"KoboldAI/OPT-2.7B-Nerys-v2",
|
1034 |
+
"bigscience/bloom-3b",
|
1035 |
+
"Devio/test100",
|
1036 |
+
"RWKV/rwkv-raven-3b",
|
1037 |
+
"Azure99/blossom-v2-3b",
|
1038 |
+
"codellama/CodeLlama-34b-Python-hf",
|
1039 |
+
"bhenrym14/airoboros-33b-gpt4-1.4.1-PI-8192-fp16",
|
1040 |
+
"EleutherAI/gpt-neo-2.7B",
|
1041 |
+
"danielhanchen/open_llama_3b_600bt_preview",
|
1042 |
+
"HuggingFaceH4/starchat-alpha",
|
1043 |
+
"pythainlp/wangchanglm-7.5B-sft-en-sharded",
|
1044 |
+
"beaugogh/pythia-1.4b-deduped-sharegpt",
|
1045 |
+
"HWERI/pythia-1.4b-deduped-sharegpt",
|
1046 |
+
"OpenAssistant/stablelm-7b-sft-v7-epoch-3",
|
1047 |
+
"codellama/CodeLlama-7b-Python-hf",
|
1048 |
+
"aisquared/chopt-1_3b",
|
1049 |
+
"PygmalionAI/metharme-1.3b",
|
1050 |
+
"Linly-AI/Chinese-LLaMA-2-13B-hf",
|
1051 |
+
"chargoddard/llama-2-34b-uncode",
|
1052 |
+
"RWKV/rwkv-4-3b-pile",
|
1053 |
+
"pythainlp/wangchanglm-7.5B-sft-enth",
|
1054 |
+
"MBZUAI/LaMini-GPT-1.5B",
|
1055 |
+
"Writer/palmyra-base",
|
1056 |
+
"KoboldAI/fairseq-dense-1.3B",
|
1057 |
+
"EleutherAI/pythia-1.4b-deduped",
|
1058 |
+
"MBZUAI/lamini-neo-1.3b",
|
1059 |
+
"h2oai/h2ogpt-gm-oasst1-en-2048-open-llama-7b-preview-300bt",
|
1060 |
+
"sartmis1/starcoder-finetune-openapi",
|
1061 |
+
"MayaPH/opt-flan-iml-6.7b",
|
1062 |
+
"facebook/xglm-4.5B",
|
1063 |
+
"WizardLM/WizardCoder-15B-V1.0",
|
1064 |
+
"facebook/opt-iml-max-1.3b",
|
1065 |
+
"stabilityai/stablelm-tuned-alpha-7b",
|
1066 |
+
"aisquared/dlite-v2-1_5b",
|
1067 |
+
"stabilityai/stablelm-base-alpha-7b",
|
1068 |
+
"sartmis1/starcoder-finetune-selfinstruct",
|
1069 |
+
"lizhuang144/starcoder_mirror",
|
1070 |
+
"bigcode/starcoder",
|
1071 |
+
"TheBloke/CodeLlama-34B-Python-fp16",
|
1072 |
+
"open-llm-leaderboard/bloomz-1b7-4bit-alpaca-auto-eval-adapter-applied",
|
1073 |
+
"ehartford/CodeLlama-34b-Python-hf",
|
1074 |
+
"codellama/CodeLlama-7b-Python-hf",
|
1075 |
+
"GeorgiaTechResearchInstitute/starcoder-gpteacher-code-instruct",
|
1076 |
+
"LoupGarou/WizardCoder-Guanaco-15B-V1.0",
|
1077 |
+
"golaxy/gogpt-3b-bloom",
|
1078 |
+
"EleutherAI/pythia-1.3b",
|
1079 |
+
"codellama/CodeLlama-13b-Python-hf",
|
1080 |
+
"hakurei/lotus-12B",
|
1081 |
+
"NYTK/PULI-GPTrio",
|
1082 |
+
"facebook/opt-1.3b",
|
1083 |
+
"TheBloke/CodeLlama-13B-Python-fp16",
|
1084 |
+
"codellama/CodeLlama-13b-Python-hf",
|
1085 |
+
"RWKV/rwkv-raven-1b5",
|
1086 |
+
"PygmalionAI/pygmalion-2.7b",
|
1087 |
+
"bigscience/bloom-1b7",
|
1088 |
+
"gpt2-xl",
|
1089 |
+
"LoupGarou/WizardCoder-Guanaco-15B-V1.1",
|
1090 |
+
"RWKV/rwkv-4-1b5-pile",
|
1091 |
+
"codellama/CodeLlama-34b-hf",
|
1092 |
+
"NousResearch/CodeLlama-34b-hf",
|
1093 |
+
"rinna/bilingual-gpt-neox-4b-8k",
|
1094 |
+
"lxe/Cerebras-GPT-2.7B-Alpaca-SP",
|
1095 |
+
"cerebras/Cerebras-GPT-2.7B",
|
1096 |
+
"jzjiao/opt-1.3b-rlhf",
|
1097 |
+
"EleutherAI/gpt-neo-1.3B",
|
1098 |
+
"aisquared/dlite-v1-1_5b",
|
1099 |
+
"Corianas/Quokka_2.7b",
|
1100 |
+
"MrNJK/gpt2-xl-sft",
|
1101 |
+
"facebook/galactica-1.3b",
|
1102 |
+
"aisquared/dlite-v2-774m",
|
1103 |
+
"EleutherAI/pythia-1b-deduped",
|
1104 |
+
"Kunhao/pile-7b-250b-tokens",
|
1105 |
+
"w601sxs/b1ade-1b",
|
1106 |
+
"rinna/bilingual-gpt-neox-4b",
|
1107 |
+
"shaohang/SparseOPT-1.3B",
|
1108 |
+
"shaohang/Sparse0.5_OPT-1.3",
|
1109 |
+
"EleutherAI/polyglot-ko-12.8b",
|
1110 |
+
"Salesforce/codegen-6B-multi",
|
1111 |
+
"bigscience/bloom-1b1",
|
1112 |
+
"TFLai/gpt-neo-1.3B-4bit-alpaca",
|
1113 |
+
"FabbriSimo01/Bloom_1b_Quantized",
|
1114 |
+
"MBZUAI/LaMini-GPT-774M",
|
1115 |
+
"Locutusque/gpt2-large-conversational",
|
1116 |
+
"Devio/test-3b",
|
1117 |
+
"stabilityai/stablelm-tuned-alpha-3b",
|
1118 |
+
"PygmalionAI/pygmalion-1.3b",
|
1119 |
+
"KoboldAI/fairseq-dense-355M",
|
1120 |
+
"Rachneet/gpt2-xl-alpaca",
|
1121 |
+
"gpt2-large",
|
1122 |
+
"Mikivis/gpt2-large-lora-sft",
|
1123 |
+
"stabilityai/stablelm-base-alpha-3b",
|
1124 |
+
"gpt2-medium",
|
1125 |
+
"Kunhao/pile-7b",
|
1126 |
+
"aisquared/dlite-v1-774m",
|
1127 |
+
"aisquared/dlite-v2-355m",
|
1128 |
+
"YeungNLP/firefly-bloom-2b6-v2",
|
1129 |
+
"KnutJaegersberg/gpt-2-xl-EvolInstruct",
|
1130 |
+
"KnutJaegersberg/galactica-orca-wizardlm-1.3b",
|
1131 |
+
"cerebras/Cerebras-GPT-1.3B",
|
1132 |
+
"FabbriSimo01/Cerebras_1.3b_Quantized",
|
1133 |
+
"facebook/xglm-1.7B",
|
1134 |
+
"EleutherAI/pythia-410m-deduped",
|
1135 |
+
"TheBloke/GPlatty-30B-SuperHOT-8K-fp16",
|
1136 |
+
"DataLinguistic/DataLinguistic-34B-V1.0",
|
1137 |
+
"Corianas/Quokka_1.3b",
|
1138 |
+
"TheTravellingEngineer/bloom-560m-RLHF-v2",
|
1139 |
+
"Corianas/1.3b",
|
1140 |
+
"RWKV/rwkv-4-430m-pile",
|
1141 |
+
"porkorbeef/Llama-2-13b-sf",
|
1142 |
+
"xhyi/PT_GPTNEO350_ATG",
|
1143 |
+
"TheBloke/Wizard-Vicuna-13B-Uncensored-GPTQ",
|
1144 |
+
"bigscience/bloomz-560m",
|
1145 |
+
"TheBloke/medalpaca-13B-GPTQ-4bit",
|
1146 |
+
"TheBloke/Vicuna-33B-1-3-SuperHOT-8K-fp16",
|
1147 |
+
"aisquared/dlite-v1-355m",
|
1148 |
+
"uukuguy/speechless-codellama-orca-airoboros-13b-0.10e",
|
1149 |
+
"yhyhy3/med-orca-instruct-33b",
|
1150 |
+
"TheBloke/Wizard-Vicuna-30B-Superhot-8K-fp16",
|
1151 |
+
"TheTravellingEngineer/bloom-1b1-RLHF",
|
1152 |
+
"MBZUAI/lamini-cerebras-1.3b",
|
1153 |
+
"IDEA-CCNL/Ziya-LLaMA-13B-Pretrain-v1",
|
1154 |
+
"TheBloke/WizardLM-7B-uncensored-GPTQ",
|
1155 |
+
"TheBloke/EverythingLM-13B-16K-GPTQ",
|
1156 |
+
"quantumaikr/open_llama_7b_hf",
|
1157 |
+
"TheBloke/chronos-wizardlm-uc-scot-st-13B-GPTQ",
|
1158 |
+
"TheBloke/WizardLM-30B-Uncensored-GPTQ",
|
1159 |
+
"IDEA-CCNL/Ziya-LLaMA-13B-v1",
|
1160 |
+
"Phind/Phind-CodeLlama-34B-v1",
|
1161 |
+
"robowaifudev/megatron-gpt2-345m",
|
1162 |
+
"MayaPH/GodziLLa-30B-instruct",
|
1163 |
+
"TheBloke/CAMEL-33B-Combined-Data-SuperHOT-8K-fp16",
|
1164 |
+
"uukuguy/speechless-codellama-orca-platypus-13b-0.10e",
|
1165 |
+
"doas/test2",
|
1166 |
+
"BreadAi/PM_modelV2",
|
1167 |
+
"bigcode/santacoder",
|
1168 |
+
"TheBloke/wizard-vicuna-13B-GPTQ",
|
1169 |
+
"porkorbeef/Llama-2-13b",
|
1170 |
+
"TehVenom/DiffMerge-DollyGPT-Pygmalion",
|
1171 |
+
"PygmalionAI/pygmalion-350m",
|
1172 |
+
"TheBloke/orca_mini_v3_7B-GPTQ",
|
1173 |
+
"TheBloke/WizardLM-Uncensored-SuperCOT-StoryTelling-30B-GPTQ",
|
1174 |
+
"TheBloke/WizardLM-30B-GPTQ",
|
1175 |
+
"bigscience/bloom-560m",
|
1176 |
+
"TFLai/gpt2-turkish-uncased",
|
1177 |
+
"TheBloke/guanaco-33B-GPTQ",
|
1178 |
+
"TheBloke/openchat_v2_openorca_preview-GPTQ",
|
1179 |
+
"porkorbeef/Llama-2-13b-public",
|
1180 |
+
"TheBloke/LongChat-13B-GPTQ",
|
1181 |
+
"yhyhy3/med-orca-instruct-33b",
|
1182 |
+
"TheBloke/airoboros-33B-gpt4-1-4-SuperHOT-8K-fp16",
|
1183 |
+
"TheBloke/Chinese-Alpaca-33B-SuperHOT-8K-fp16",
|
1184 |
+
"MayaPH/FinOPT-Franklin",
|
1185 |
+
"TheBloke/WizardLM-33B-V1.0-Uncensored-GPTQ",
|
1186 |
+
"TheBloke/Project-Baize-v2-13B-GPTQ",
|
1187 |
+
"malhajar/Platypus2-70B-instruct-4bit-gptq",
|
1188 |
+
"KoboldAI/OPT-350M-Erebus",
|
1189 |
+
"rishiraj/bloom-560m-guanaco",
|
1190 |
+
"Panchovix/WizardLM-33B-V1.0-Uncensored-SuperHOT-8k",
|
1191 |
+
"doas/test5",
|
1192 |
+
"vicgalle/alpaca-7b",
|
1193 |
+
"beomi/KoAlpaca-Polyglot-5.8B",
|
1194 |
+
"Phind/Phind-CodeLlama-34B-Python-v1",
|
1195 |
+
"timdettmers/guanaco-65b-merged",
|
1196 |
+
"TheBloke/wizard-mega-13B-GPTQ",
|
1197 |
+
"MayaPH/GodziLLa-30B-plus",
|
1198 |
+
"TheBloke/Platypus-30B-SuperHOT-8K-fp16",
|
1199 |
+
"facebook/opt-350m",
|
1200 |
+
"KoboldAI/OPT-350M-Nerys-v2",
|
1201 |
+
"TheBloke/robin-33B-v2-GPTQ",
|
1202 |
+
"jaspercatapang/Echidna-30B",
|
1203 |
+
"TheBloke/llama-30b-supercot-SuperHOT-8K-fp16",
|
1204 |
+
"marcchew/test1",
|
1205 |
+
"Harshvir/LaMini-Neo-1.3B-Mental-Health_lora",
|
1206 |
+
"golaxy/gogpt-560m",
|
1207 |
+
"TheBloke/orca_mini_13B-GPTQ",
|
1208 |
+
"Panchovix/airoboros-33b-gpt4-1.2-SuperHOT-8k",
|
1209 |
+
"Aspik101/tulu-7b-instruct-pl-lora_unload",
|
1210 |
+
"Phind/Phind-CodeLlama-34B-v2",
|
1211 |
+
"BreadAi/MusePy-1-2",
|
1212 |
+
"cerebras/Cerebras-GPT-590M",
|
1213 |
+
"microsoft/CodeGPT-small-py",
|
1214 |
+
"victor123/WizardLM-13B-1.0",
|
1215 |
+
"OptimalScale/robin-65b-v2-delta",
|
1216 |
+
"voidful/changpt-bart",
|
1217 |
+
"FabbriSimo01/GPT_Large_Quantized",
|
1218 |
+
"MayaPH/FinOPT-Lincoln",
|
1219 |
+
"KoboldAI/fairseq-dense-125M",
|
1220 |
+
"SebastianSchramm/Cerebras-GPT-111M-instruction",
|
1221 |
+
"TheTravellingEngineer/bloom-560m-RLHF",
|
1222 |
+
"breadlicker45/dough-instruct-base-001",
|
1223 |
+
"WizardLM/WizardLM-30B-V1.0",
|
1224 |
+
"WizardLM/WizardLM-30B-V1.0",
|
1225 |
+
"WizardLM/WizardLM-30B-V1.0",
|
1226 |
+
"TaylorAI/Flash-Llama-30M-20001",
|
1227 |
+
"porkorbeef/Llama-2-13b-12_153950",
|
1228 |
+
"huggingtweets/bladeecity-jerma985",
|
1229 |
+
"KnutJaegersberg/megatron-GPT-2-345m-EvolInstruct",
|
1230 |
+
"bhenrym14/airoboros-33b-gpt4-1.4.1-lxctx-PI-16384-fp16",
|
1231 |
+
"microsoft/DialoGPT-small",
|
1232 |
+
"Corianas/590m",
|
1233 |
+
"facebook/xglm-564M",
|
1234 |
+
"EleutherAI/gpt-neo-125m",
|
1235 |
+
"EleutherAI/pythia-160m-deduped",
|
1236 |
+
"klosax/pythia-160m-deduped-step92k-193bt",
|
1237 |
+
"MBZUAI/lamini-neo-125m",
|
1238 |
+
"bigcode/tiny_starcoder_py",
|
1239 |
+
"concedo/OPT-19M-ChatSalad",
|
1240 |
+
"anton-l/gpt-j-tiny-random",
|
1241 |
+
"grantprice/Cerebras-GPT-590M-finetuned-DND",
|
1242 |
+
"deepnight-research/zsc-text",
|
1243 |
+
"WangZeJun/bloom-820m-chat",
|
1244 |
+
"cerebras/Cerebras-GPT-256M",
|
1245 |
+
"ai-forever/rugpt3large_based_on_gpt2",
|
1246 |
+
"alibidaran/medical_transcription_generator",
|
1247 |
+
"Deci/DeciCoder-1b",
|
1248 |
+
"microsoft/DialoGPT-medium",
|
1249 |
+
"ogimgio/gpt-neo-125m-neurallinguisticpioneers",
|
1250 |
+
"open-llm-leaderboard/bloom-560m-4bit-alpaca-auto-eval-adapter-applied",
|
1251 |
+
"BreadAi/gpt-YA-1-1_160M",
|
1252 |
+
"microsoft/DialoGPT-large",
|
1253 |
+
"facebook/opt-125m",
|
1254 |
+
"huggingtweets/jerma985",
|
1255 |
+
"Locutusque/gpt2-conversational-or-qa",
|
1256 |
+
"concedo/Pythia-70M-ChatSalad",
|
1257 |
+
"roneneldan/TinyStories-1M",
|
1258 |
+
"BreadAi/DiscordPy",
|
1259 |
+
"bigcode/gpt_bigcode-santacoder",
|
1260 |
+
"Tincando/fiction_story_generator",
|
1261 |
+
"klosax/pythia-70m-deduped-step44k-92bt",
|
1262 |
+
"Quake24/easyTermsSummerizer",
|
1263 |
+
"BreadAi/gpt-YA-1-1_70M",
|
1264 |
+
"EleutherAI/pythia-160m",
|
1265 |
+
"euclaise/gpt-neox-122m-minipile-digits",
|
1266 |
+
"MBZUAI/lamini-cerebras-590m",
|
1267 |
+
"nicholasKluge/Aira-124M",
|
1268 |
+
"MayaPH/FinOPT-Washington",
|
1269 |
+
"cyberagent/open-calm-large",
|
1270 |
+
"BreadAi/StoryPy",
|
1271 |
+
"EleutherAI/pythia-70m",
|
1272 |
+
"BreadAi/gpt-Youtube",
|
1273 |
+
"roneneldan/TinyStories-33M",
|
1274 |
+
"EleutherAI/pythia-70m-deduped",
|
1275 |
+
"lgaalves/gpt2_guanaco-dolly-platypus",
|
1276 |
+
"Corianas/Quokka_590m",
|
1277 |
+
"lgaalves/gpt2_platypus-dolly-guanaco",
|
1278 |
+
"cyberagent/open-calm-7b",
|
1279 |
+
"RWKV/rwkv-4-169m-pile",
|
1280 |
+
"gpt2",
|
1281 |
+
"roneneldan/TinyStories-28M",
|
1282 |
+
"lgaalves/gpt2_open-platypus",
|
1283 |
+
"gpt2",
|
1284 |
+
"SaylorTwift/gpt2_test",
|
1285 |
+
"roneneldan/TinyStories-3M",
|
1286 |
+
"nthngdy/pythia-owt2-70m-50k",
|
1287 |
+
"Corianas/256_5epoch",
|
1288 |
+
"roneneldan/TinyStories-8M",
|
1289 |
+
"lgaalves/gpt2-dolly",
|
1290 |
+
"nthngdy/pythia-owt2-70m-100k",
|
1291 |
+
"aisquared/dlite-v2-124m",
|
1292 |
+
"mncai/SGPT-1.3B-insurance-epoch10",
|
1293 |
+
"huggingtweets/gladosystem",
|
1294 |
+
"abhiramtirumala/DialoGPT-sarcastic-medium",
|
1295 |
+
"MBZUAI/lamini-cerebras-256m",
|
1296 |
+
"cerebras/Cerebras-GPT-111M",
|
1297 |
+
"uberkie/metharme-1.3b-finetuned",
|
1298 |
+
"MBZUAI/lamini-cerebras-111m",
|
1299 |
+
"psyche/kogpt",
|
1300 |
+
"Corianas/Quokka_256m",
|
1301 |
+
"vicgalle/gpt2-alpaca-gpt4",
|
1302 |
+
"aisquared/dlite-v1-124m",
|
1303 |
+
"Mikivis/xuanxuan",
|
1304 |
+
"MBZUAI/LaMini-GPT-124M",
|
1305 |
+
"vicgalle/gpt2-alpaca",
|
1306 |
+
"huashiyiqike/testmodel",
|
1307 |
+
"Corianas/111m",
|
1308 |
+
"baseline",
|
1309 |
+
]
|
src/display_models/get_model_metadata.py
CHANGED
@@ -53,7 +53,7 @@ def get_model_infos_from_hub(leaderboard_data: List[dict]):
|
|
53 |
if model_name not in model_size_cache:
|
54 |
model_size_cache[model_name] = get_model_size(model_name, model_info)
|
55 |
model_data[AutoEvalColumn.params.name] = model_size_cache[model_name]
|
56 |
-
|
57 |
# save cache to disk in pickle format
|
58 |
with open("model_info_cache.pkl", "wb") as f:
|
59 |
pickle.dump(model_info_cache, f)
|
@@ -85,7 +85,7 @@ def get_model_size(model_name, model_info):
|
|
85 |
with init_empty_weights():
|
86 |
model = AutoModel.from_config(config, trust_remote_code=False)
|
87 |
return round(sum(p.numel() for p in model.parameters() if p.requires_grad) / 1e9, 3)
|
88 |
-
except (EnvironmentError, ValueError, KeyError):
|
89 |
try:
|
90 |
size_match = re.search(size_pattern, model_name.lower())
|
91 |
size = size_match.group(0)
|
|
|
53 |
if model_name not in model_size_cache:
|
54 |
model_size_cache[model_name] = get_model_size(model_name, model_info)
|
55 |
model_data[AutoEvalColumn.params.name] = model_size_cache[model_name]
|
56 |
+
|
57 |
# save cache to disk in pickle format
|
58 |
with open("model_info_cache.pkl", "wb") as f:
|
59 |
pickle.dump(model_info_cache, f)
|
|
|
85 |
with init_empty_weights():
|
86 |
model = AutoModel.from_config(config, trust_remote_code=False)
|
87 |
return round(sum(p.numel() for p in model.parameters() if p.requires_grad) / 1e9, 3)
|
88 |
+
except (EnvironmentError, ValueError, KeyError): # model config not found, likely private
|
89 |
try:
|
90 |
size_match = re.search(size_pattern, model_name.lower())
|
91 |
size = size_match.group(0)
|
src/display_models/modelcard_filter.py
CHANGED
@@ -1,6 +1,7 @@
|
|
1 |
import huggingface_hub
|
2 |
from huggingface_hub import ModelCard
|
3 |
|
|
|
4 |
# ht to @Wauplin, thank you for the snippet!
|
5 |
# See https://huggingface.co/spaces/HuggingFaceH4/open_llm_leaderboard/discussions/317
|
6 |
def check_model_card(repo_id: str) -> tuple[bool, str]:
|
@@ -21,5 +22,5 @@ def check_model_card(repo_id: str) -> tuple[bool, str]:
|
|
21 |
# Enforce card content
|
22 |
if len(card.text) < 200:
|
23 |
return False, "Please add a description to your model card, it is too short."
|
24 |
-
|
25 |
-
return True, ""
|
|
|
1 |
import huggingface_hub
|
2 |
from huggingface_hub import ModelCard
|
3 |
|
4 |
+
|
5 |
# ht to @Wauplin, thank you for the snippet!
|
6 |
# See https://huggingface.co/spaces/HuggingFaceH4/open_llm_leaderboard/discussions/317
|
7 |
def check_model_card(repo_id: str) -> tuple[bool, str]:
|
|
|
22 |
# Enforce card content
|
23 |
if len(card.text) < 200:
|
24 |
return False, "Please add a description to your model card, it is too short."
|
25 |
+
|
26 |
+
return True, ""
|
src/display_models/read_results.py
CHANGED
@@ -107,7 +107,7 @@ def parse_eval_result(json_filepath: str) -> Tuple[str, list[dict]]:
|
|
107 |
revision=model_sha,
|
108 |
results={benchmark: mean_acc},
|
109 |
precision=precision, # todo model_type=, weight_type=
|
110 |
-
date=config.get("submission_date")
|
111 |
)
|
112 |
)
|
113 |
|
|
|
107 |
revision=model_sha,
|
108 |
results={benchmark: mean_acc},
|
109 |
precision=precision, # todo model_type=, weight_type=
|
110 |
+
date=config.get("submission_date"),
|
111 |
)
|
112 |
)
|
113 |
|
src/load_from_hub.py
CHANGED
@@ -23,7 +23,8 @@ def get_all_requested_models(requested_models_dir: str) -> set[str]:
|
|
23 |
current_depth = root.count(os.sep) - requested_models_dir.count(os.sep)
|
24 |
if current_depth == depth:
|
25 |
for file in files:
|
26 |
-
if not file.endswith(".json"):
|
|
|
27 |
with open(os.path.join(root, file), "r") as f:
|
28 |
info = json.load(f)
|
29 |
file_names.append(f"{info['model']}_{info['revision']}_{info['precision']}")
|
|
|
23 |
current_depth = root.count(os.sep) - requested_models_dir.count(os.sep)
|
24 |
if current_depth == depth:
|
25 |
for file in files:
|
26 |
+
if not file.endswith(".json"):
|
27 |
+
continue
|
28 |
with open(os.path.join(root, file), "r") as f:
|
29 |
info = json.load(f)
|
30 |
file_names.append(f"{info['model']}_{info['revision']}_{info['precision']}")
|
src/rate_limiting.py
CHANGED
@@ -1,4 +1,3 @@
|
|
1 |
-
|
2 |
from datetime import datetime, timezone, timedelta
|
3 |
|
4 |
|
@@ -12,5 +11,3 @@ def user_submission_permission(submission_name, users_to_submission_dates, rate_
|
|
12 |
submissions_after_timelimit = [d for d in submission_dates if d > time_limit]
|
13 |
|
14 |
return len(submissions_after_timelimit)
|
15 |
-
|
16 |
-
|
|
|
|
|
1 |
from datetime import datetime, timezone, timedelta
|
2 |
|
3 |
|
|
|
11 |
submissions_after_timelimit = [d for d in submission_dates if d > time_limit]
|
12 |
|
13 |
return len(submissions_after_timelimit)
|
|
|
|