Spaces:
Running
Running
File size: 4,756 Bytes
aada8de 0aedfd6 aada8de f5303bc aada8de 8fab3a5 a47646c 8fab3a5 f5303bc a47646c aada8de f5303bc aada8de 0aedfd6 9daaf0d 0aedfd6 f7abd76 9daaf0d f7abd76 f5303bc f7abd76 aada8de f7abd76 9daaf0d f7abd76 aada8de f5303bc aada8de |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 |
from dataclasses import dataclass, make_dataclass
from enum import Enum
from src.constants import MethodTypes
def fields(raw_class):
return [v for k, v in raw_class.__dict__.items() if k[:2] != "__" and k[-2:] != "__"]
# These classes are for user facing column names,
# to avoid having to change them all around the code
# when a modif is needed
@dataclass
class ColumnContent:
name: str
type: str
displayed_by_default: bool
hidden: bool = False
never_hidden: bool = False
## Leaderboard columns
model_info_dict = []
# Init column for the model properties
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 information
model_info_dict.append(["model_type", ColumnContent, ColumnContent("Type", "str", False, True)])
# model_info_dict.append(["architecture", ColumnContent, ColumnContent("Architecture", "str", False)])
# model_info_dict.append(["weight_type", ColumnContent, ColumnContent("Weight 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(["revision", ColumnContent, ColumnContent("Model sha", "str", False, False)])
# We use make dataclass to dynamically fill the scores from Tasks
ModelInfoColumn = make_dataclass("ModelInfoColumn", model_info_dict, frozen=True)
## For the queue columns in the submission tab
@dataclass(frozen=True)
class EvalQueueColumn: # Queue column
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)
## All the model information that we might need
@dataclass
class ModelDetails:
name: str
display_name: str = ""
symbol: str = "" # emoji
model_type_emoji = {
MethodTypes.foundational: "🟢",
MethodTypes.finetuned: "🔶",
MethodTypes.automl: "🤖",
MethodTypes.tree: "🌴",
MethodTypes.other: "❓",
}
def _make_model_details(name: str):
return ModelDetails(name=f"{model_type_emoji[name]} {name}", symbol=model_type_emoji[name])
class ModelType(Enum):
T1 = _make_model_details(MethodTypes.foundational)
T2 = _make_model_details(MethodTypes.finetuned)
T3 = _make_model_details(MethodTypes.automl)
T4 = _make_model_details(MethodTypes.tree)
T5 = _make_model_details(MethodTypes.other)
Unknown = ModelDetails(name="", symbol="?")
def to_str(self, separator=" "):
return f"{self.value.symbol}{separator}{self.value.name}"
@staticmethod
def from_str(type):
if MethodTypes.foundational in type or model_type_emoji[MethodTypes.foundational] in type:
return ModelType.T1
if MethodTypes.finetuned in type or model_type_emoji[MethodTypes.finetuned] in type:
return ModelType.T2
if MethodTypes.automl in type or model_type_emoji[MethodTypes.automl] in type:
return ModelType.T3
if MethodTypes.tree in type or model_type_emoji[MethodTypes.tree] in type:
return ModelType.T4
if MethodTypes.other in type or model_type_emoji[MethodTypes.other] in type:
return ModelType.T5
return ModelType.T5
def to_str(self, separator=" "):
return f"{self.value.symbol}{separator}{self.value.name}"
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
# Column selection
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)]
|