| from dataclasses import dataclass, make_dataclass |
| from enum import Enum |
|
|
| import pandas as pd |
|
|
| from src.about import Tasks |
|
|
| def fields(raw_class): |
| return [v for k, v in raw_class.__dict__.items() if k[:2] != "__" and k[-2:] != "__"] |
|
|
|
|
| |
| |
| |
| @dataclass |
| class ColumnContent: |
| name: str |
| type: str |
| displayed_by_default: bool |
| hidden: bool = False |
| never_hidden: bool = False |
|
|
| |
| model_info_dict = [] |
| |
| model_info_dict.append(["model_type_symbol", ColumnContent, ColumnContent("T", "str", True, never_hidden=True)]) |
| model_info_dict.append(["model", ColumnContent, ColumnContent("model", "markdown", True, never_hidden=True)]) |
| |
| model_info_dict.append(["model_type", ColumnContent, ColumnContent("Type", "str", False, True)]) |
| |
| |
| model_info_dict.append(["precision", ColumnContent, ColumnContent("Precision", "str", False, True)]) |
| model_info_dict.append(["license", ColumnContent, ColumnContent("Hub License", "str", False, True)]) |
| model_info_dict.append(["params", ColumnContent, ColumnContent("#Params (B)", "number", False, True)]) |
| model_info_dict.append(["likes", ColumnContent, ColumnContent("Hub β€οΈ", "number", False, True)]) |
| model_info_dict.append(["still_on_hub", ColumnContent, ColumnContent("Available on the hub", "bool", False)]) |
| model_info_dict.append(["org", ColumnContent, ColumnContent("Organization", "str", True, hidden=False)]) |
| model_info_dict.append(["testdata_leakage", ColumnContent, ColumnContent("Test Leak.", "str", True, hidden=False)]) |
| model_info_dict.append(["replication_code_available", ColumnContent, ColumnContent("Replication Code", "str", True, hidden=False)]) |
| |
|
|
| |
| ModelInfoColumn = make_dataclass("ModelInfoColumn", model_info_dict, frozen=True) |
|
|
| |
| @dataclass(frozen=True) |
| class EvalQueueColumn: |
| model = ColumnContent("model", "markdown", True) |
| revision = ColumnContent("revision", "str", True) |
| private = ColumnContent("private", "bool", True) |
| precision = ColumnContent("precision", "str", True) |
| weight_type = ColumnContent("weight_type", "str", "Original") |
| status = ColumnContent("status", "str", True) |
|
|
| |
| @dataclass |
| class ModelDetails: |
| name: str |
| display_name: str = "" |
| symbol: str = "" |
|
|
|
|
| class ModelType(Enum): |
| PT = ModelDetails(name="π’ pretrained", symbol="π’") |
| ZT = ModelDetails(name="π΄ zero-shot", symbol="π΄") |
| FT = ModelDetails(name="π£ fine-tuned", symbol="π£") |
| AG = ModelDetails(name="π‘ agentic", symbol="π‘") |
| DL = ModelDetails(name="π· deep-learning", symbol="π·") |
| ST = ModelDetails(name="πΆ statistical", symbol="πΆ") |
|
|
|
|
| Unknown = ModelDetails(name="", symbol="?") |
|
|
| def to_str(self, separator=" "): |
| return f"{self.value.symbol}{separator}{self.value.name}" |
|
|
| @staticmethod |
| def from_str(type): |
| if "fine-tuned" in type or "πΆ" in type: |
| return ModelType.FT |
| if "pretrained" in type or "π’" in type: |
| return ModelType.PT |
| if "zero-shot" in type or "π΄" in type: |
| return ModelType.ZT |
| if "agentic" in type or "π‘" in type: |
| return ModelType.AG |
| if "deep-learning" in type or "π¦" in type: |
| return ModelType.DL |
| if "statistical" in type or "π£" in type: |
| return ModelType.ST |
| return ModelType.Unknown |
|
|
| class WeightType(Enum): |
| Adapter = ModelDetails("Adapter") |
| Original = ModelDetails("Original") |
| Delta = ModelDetails("Delta") |
|
|
| class Precision(Enum): |
| float16 = ModelDetails("float16") |
| bfloat16 = ModelDetails("bfloat16") |
| Unknown = ModelDetails("?") |
|
|
| def from_str(precision): |
| if precision in ["torch.float16", "float16"]: |
| return Precision.float16 |
| if precision in ["torch.bfloat16", "bfloat16"]: |
| return Precision.bfloat16 |
| return Precision.Unknown |
|
|
| |
| MODEL_INFO_COLS = [c.name for c in fields(ModelInfoColumn) if not c.hidden] |
|
|
| EVAL_COLS = [c.name for c in fields(EvalQueueColumn)] |
| EVAL_TYPES = [c.type for c in fields(EvalQueueColumn)] |
|
|
| BENCHMARK_COLS = [t.value.col_name for t in Tasks] |
|
|
|
|