File size: 467 Bytes
27638f8
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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: "❓",
}