| | |
| |
|
| | import os |
| | from holisticai.benchmark import BiasMitigationBenchmark |
| |
|
| | def main(): |
| | for task_type in ["multiclass", |
| | "regression", |
| | "clustering", |
| | "binary_classification", |
| | ]: |
| | for stage in ["preprocessing", |
| | "inprocessing", |
| | "postprocessing" |
| | ]: |
| | benchmark = BiasMitigationBenchmark(task_type, stage) |
| | results = benchmark.run() |
| | if not os.path.exists("data"): |
| | os.makedirs("data") |
| | results.to_parquet(f"data/benchmark_{task_type}_{stage}.parquet", index=True) |
| | print(f"Results saved for {task_type} task type and {stage} stage.") |
| |
|
| | if __name__ == "__main__": |
| | main() |