|
import pandas as pd |
|
import streamlit as st |
|
|
|
COLOR_MAP = { |
|
"light": { |
|
"yellow": "background-color: rgba(255, 255, 204, 0.5)", |
|
"green": "background-color: rgba(227, 251, 233, 0.5)", |
|
"blue": "background-color: rgba(230, 244, 255, 0.5)" |
|
}, |
|
} |
|
|
|
def get_color_map(): |
|
"""Returns the appropriate color map based on the current theme.""" |
|
return COLOR_MAP["light"] |
|
|
|
def style_zero_context(df): |
|
""" |
|
Similar approach to style_long_context: |
|
1) color rows based on model name |
|
2) numeric formatting |
|
""" |
|
import pandas as pd |
|
|
|
|
|
color_mapping = { |
|
"minimax-text-01": get_color_map()["green"], |
|
"jamba-1.5-large": get_color_map()["blue"], |
|
"deepseek-r1": get_color_map()["yellow"], |
|
"o1-mini": get_color_map()["yellow"], |
|
"qwq-32b-preview": get_color_map()["yellow"], |
|
|
|
|
|
} |
|
styler = df.style.apply( |
|
lambda row: [color_mapping.get(row["Model"], "")]*len(row), |
|
axis=1 |
|
) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
styler = styler.format({ |
|
"Symbolic": "{:,.2f}", |
|
"Medium": "{:,.2f}", |
|
"Hard": "{:,.2f}", |
|
"1st<50% op": "{:,.0f}", |
|
"1st<10% op": "{:,.0f}", |
|
"Avg. Acc op≤30": "{:.4f}", |
|
"Average↑": "{:,.2f}" |
|
}) |
|
|
|
|
|
return styler |
|
|
|
def style_long_context(df): |
|
color_mapping = { |
|
"minimax-text-01": get_color_map()["green"], |
|
"jamba-1.5-large": get_color_map()["blue"] |
|
} |
|
|
|
return df.style.apply( |
|
lambda row: [color_mapping.get(row["Model"], "")]*len(row), |
|
axis=1 |
|
).format({ |
|
"8K": "{:,.2f}", |
|
"16K": "{:,.2f}", |
|
"32K": "{:,.2f}", |
|
"Average↑": "{:,.2f}" |
|
}) |