leaderboard / constants.py
LennartPurucker's picture
maint: improve text
cb51391
raw
history blame contribute delete
516 Bytes
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:"πŸ“Š",
}