Spaces:
Paused
Paused
credit Maziyar Panahi
Browse files
app.py
CHANGED
@@ -87,7 +87,7 @@ def make_df(file_path: str, n_rows: int) -> pd.DataFrame:
|
|
87 |
"""
|
88 |
columns = ["Available on the hub", "Model sha", "T", "Type", "Precision",
|
89 |
"Architecture", "Weight type", "Hub ❤️", "Flagged", "MoE"]
|
90 |
-
ds = pd.read_csv(file_path)
|
91 |
df = (
|
92 |
ds[
|
93 |
(ds["#Params (B)"] == 7.24) &
|
@@ -469,7 +469,7 @@ title = """
|
|
469 |
<p><em>AutoMerger selects two 7B models on top of the Open LLM Leaderboard, combine them with a merge technique, and evaluate the resulting model.</em></p>
|
470 |
</div>
|
471 |
"""
|
472 |
-
footer = '<div align="center"><p><em>Special thanks to <a href="https://huggingface.co/Weyaxi">Weyaxi</a> for the <a href="https://github.com/Weyaxi/scrape-open-llm-leaderboard">Open LLM Leaderboard Scraper</a
|
473 |
with gr.Blocks(theme=gr.themes.Soft(primary_hue="blue")) as demo:
|
474 |
gr.Markdown(title)
|
475 |
logs = gr.Textbox(label="Logs")
|
|
|
87 |
"""
|
88 |
columns = ["Available on the hub", "Model sha", "T", "Type", "Precision",
|
89 |
"Architecture", "Weight type", "Hub ❤️", "Flagged", "MoE"]
|
90 |
+
ds = pd.read_csv(file_path, encoding='utf-8')
|
91 |
df = (
|
92 |
ds[
|
93 |
(ds["#Params (B)"] == 7.24) &
|
|
|
469 |
<p><em>AutoMerger selects two 7B models on top of the Open LLM Leaderboard, combine them with a merge technique, and evaluate the resulting model.</em></p>
|
470 |
</div>
|
471 |
"""
|
472 |
+
footer = '<div align="center"><p><em>Special thanks to <a href="https://huggingface.co/Weyaxi">Weyaxi</a> for the <a href="https://github.com/Weyaxi/scrape-open-llm-leaderboard">Open LLM Leaderboard Scraper</a>, <a href="https://github.com/cg123">Charles Goddard</a> for <a href="https://github.com/arcee-ai/mergekit">mergekit</a>, and <a href="https://huggingface.co/MaziyarPanahi">Maziyar Panahi</a> for making <a href="https://huggingface.co/collections/MaziyarPanahi/gguf-65afc99c3997c4b6d2d9e1d5">GGUF versions</a> of these automerges.</em></p></div>'
|
473 |
with gr.Blocks(theme=gr.themes.Soft(primary_hue="blue")) as demo:
|
474 |
gr.Markdown(title)
|
475 |
logs = gr.Textbox(label="Logs")
|