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:"📊", }