Spaces:
Running
Running
File size: 453 Bytes
16d8300 27638f8 16d8300 27638f8 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
class Constants:
col_name: str = "method_type"
automl: str = "AutoML"
tree: str = "Tree-based"
foundational: str = "Foundational"
finetuned: str = "Neural-network"
baseline: str = "Baseline"
other: str = "Other"
model_type_emoji = {
Constants.tree: "π΄",
Constants.foundational: "π§ ",
Constants.finetuned: "π",
Constants.automl: "π€",
Constants.baseline: "π",
Constants.other: "β",
}
|