TabArena-WIP / src /constants.py
geoalgo's picture
revert changes to ugly enum to have icons
f7abd76
raw
history blame contribute delete
750 Bytes
class MetricNames:
raw_error: str = "raw-error"
normalized_error: str = "normalized-error"
fit_time_per_1K_rows: str = "fit-time-per-1K-rows"
inference_time_per_1K_rows: str = "inference-time-per-1K-rows"
class ProblemTypes:
col_name: str = "problem_type"
regression: str = "Regression"
classification: str = "Classification"
multi_classification: str = "Multi-classification"
class MethodTypes:
col_name: str = "method_type"
automl: str = "AutoML"
boosted_tree: str = "Boosted-tree"
foundational: str = "Foundational"
finetuned: str = "Fine-tuned"
other: str = "Other"
class DatasetInfo:
col_name: str = "dataset"
num_rows: str = "num_rows"
num_features: str = "num_features"