leaderboard / constants.py
geoalgo's picture
add files
27638f8
raw
history blame
467 Bytes
class MethodTypes:
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 = {
MethodTypes.tree: "🌴",
MethodTypes.foundational: "🧠",
MethodTypes.finetuned: "🌐",
MethodTypes.automl: "πŸ€–",
MethodTypes.baseline: "πŸ“",
MethodTypes.other: "❓",
}