leaderboard / constants.py
geoalgo's picture
add comments
16d8300
raw
history blame
453 Bytes
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: "❓",
}