Spaces:
Running
Running
File size: 750 Bytes
0aedfd6 f7abd76 0aedfd6 f7abd76 0aedfd6 6f977e2 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
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" |