|
|
|
def model_hyperlink(link, model_name): |
|
return f'<a target="_blank" href="{link}" style="color: var(--link-text-color); text-decoration: underline; text-decoration-style: dotted;">{model_name}</a>' |
|
|
|
|
|
MODEL_MAPPING = { |
|
"DeepSeek-R1": "deepseek-ai/DeepSeek-R1", |
|
"deepseek-r1": "deepseek-ai/DeepSeek-R1", |
|
"OpenAI ChatGPT-4o": ("External Awesome Model", "https://chatgpt.com") |
|
} |
|
|
|
def make_clickable_model(model_name): |
|
""" |
|
๋ชจ๋ธ ์ด๋ฆ์ ๋ฐ์์ ํด๋ฆญ ๊ฐ๋ฅํ ํ์ดํผ๋งํฌ๋ก ๋ณํํฉ๋๋ค. |
|
MODEL_MAPPING์ ์๋ ๋ชจ๋ธ์ ๋งคํ๋ ์ด๋ฆ๊ณผ URL์ ์ฌ์ฉํ๊ณ , |
|
์๋ ๋ชจ๋ธ์ ๊ธฐ๋ณธ Hugging Face URL์ ์ฌ์ฉํฉ๋๋ค. |
|
""" |
|
if model_name is None: |
|
return "N/A" |
|
|
|
|
|
model_name_str = str(model_name).strip() |
|
|
|
|
|
for key, mapping_value in MODEL_MAPPING.items(): |
|
if model_name_str.lower() == key.lower(): |
|
if isinstance(mapping_value, tuple): |
|
|
|
new_name, new_url = mapping_value |
|
else: |
|
|
|
new_name = mapping_value |
|
new_url = f"https://huggingface.co/{new_name}" |
|
return model_hyperlink(new_url, new_name) |
|
|
|
|
|
link = f"https://huggingface.co/{model_name_str}" |
|
return model_hyperlink(link, model_name_str) |
|
|
|
def styled_error(error): |
|
return f"<p style='color: red; font-size: 20px; text-align: center;'>{error}</p>" |
|
|
|
def styled_warning(warn): |
|
return f"<p style='color: orange; font-size: 20px; text-align: center;'>{warn}</p>" |
|
|
|
def styled_message(message): |
|
return f"<p style='color: green; font-size: 20px; text-align: center;'>{message}</p>" |
|
|
|
def has_no_nan_values(df, columns): |
|
return df[columns].notna().all(axis=1) |
|
|
|
def has_nan_values(df, columns): |
|
return df[columns].isna().any(axis=1) |