Spaces:
Running
Running
| 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:"π", | |
| } | |