Spaces:
Running
Running
File size: 516 Bytes
16d8300 27638f8 1dedb52 27638f8 cb51391 1dedb52 27638f8 1dedb52 16d8300 1dedb52 16d8300 cb51391 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"
tree: str = "Tree-based"
foundational: str = "Foundation Model"
neural_network: str ="Neural Network"
baseline: str = "Baseline"
reference: str ="Reference Pipeline"
# Not Used
other: str = "Other"
model_type_emoji = {
Constants.tree: "π³",
Constants.foundational: "π§ β‘",
Constants.neural_network:"π§ π",
Constants.baseline: "π",
# Not used
Constants.other: "β",
Constants.reference:"π",
}
|