ClΓ©mentine
commited on
Commit
β’
0f4a719
1
Parent(s):
d7daa68
corrected finetuned mentions
Browse files- app.py +2 -2
- src/assets/text_content.py +1 -1
app.py
CHANGED
@@ -328,7 +328,7 @@ with demo:
|
|
328 |
)
|
329 |
filter_columns = gr.Radio(
|
330 |
label="β Filter model types",
|
331 |
-
choices = ["all", "π’ base", "πΆ
|
332 |
value="all",
|
333 |
elem_id="filter-columns"
|
334 |
)
|
@@ -404,7 +404,7 @@ with demo:
|
|
404 |
False, label="Private", visible=not IS_PUBLIC
|
405 |
)
|
406 |
model_type = gr.Dropdown(
|
407 |
-
choices=["pretrained", "
|
408 |
label="Model type",
|
409 |
multiselect=False,
|
410 |
value=None,
|
|
|
328 |
)
|
329 |
filter_columns = gr.Radio(
|
330 |
label="β Filter model types",
|
331 |
+
choices = ["all", "π’ base", "πΆ finetuned", "π¦ RL-tuned"],
|
332 |
value="all",
|
333 |
elem_id="filter-columns"
|
334 |
)
|
|
|
404 |
False, label="Private", visible=not IS_PUBLIC
|
405 |
)
|
406 |
model_type = gr.Dropdown(
|
407 |
+
choices=["pretrained", "finetuned", "with RL"],
|
408 |
label="Model type",
|
409 |
multiselect=False,
|
410 |
value=None,
|
src/assets/text_content.py
CHANGED
@@ -63,7 +63,7 @@ INTRODUCTION_TEXT = f"""
|
|
63 |
|
64 |
Other cool benchmarks for LLMs are developed at HuggingFace, go check them out: ππ€ [human and GPT4 evals](https://huggingface.co/spaces/HuggingFaceH4/human_eval_llm_leaderboard), π₯οΈ [performance benchmarks](https://huggingface.co/spaces/optimum/llm-perf-leaderboard)
|
65 |
|
66 |
-
π’: Base pretrained model β πΆ:
|
67 |
"""
|
68 |
|
69 |
LLM_BENCHMARKS_TEXT = f"""
|
|
|
63 |
|
64 |
Other cool benchmarks for LLMs are developed at HuggingFace, go check them out: ππ€ [human and GPT4 evals](https://huggingface.co/spaces/HuggingFaceH4/human_eval_llm_leaderboard), π₯οΈ [performance benchmarks](https://huggingface.co/spaces/optimum/llm-perf-leaderboard)
|
65 |
|
66 |
+
π’: Base pretrained model β πΆ: Finetuned model β π¦: Model using RL (read more details in "About" tab)
|
67 |
"""
|
68 |
|
69 |
LLM_BENCHMARKS_TEXT = f"""
|