Spaces:
Running
Running
File size: 500 Bytes
16d8300 27638f8 1dedb52 27638f8 1dedb52 27638f8 1dedb52 27638f8 1dedb52 16d8300 1dedb52 16d8300 1dedb52 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"
# Not Used
other: str = "Other"
automl: str = "AutoML"
model_type_emoji = {
Constants.tree: "π³",
Constants.foundational: "π§ β‘",
Constants.neural_network:"π§ π",
Constants.baseline: "π",
# Not used
Constants.other: "β",
Constants.automl: "π€",
}
|