From 25f92b93e693a04ff13f0b6dbae83182e5caaada Mon Sep 17 00:00:00 2001 From: Gregor Betz <3662782+ggbetz@users.noreply.github.com> Date: Thu, 11 Apr 2024 08:44:16 +0200 Subject: [PATCH] bugfix --- src/cot_eval/__main__.py | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/src/cot_eval/__main__.py b/src/cot_eval/__main__.py index 9932033..b341865 100644 --- a/src/cot_eval/__main__.py +++ b/src/cot_eval/__main__.py @@ -118,15 +118,7 @@ def main(): if hftoken is None: raise ValueError("No HF token specified") - tasks = [] - - # FIXME: Remove this block - # for task in config.tasks: - # if not has_config(args.upload_dataset, f"{config.name}-{task}", token=hftoken): - # tasks.append(task) - # else: - # logging.warning(f"Config {config.name}-{task} already exists. Will not generate reasoning traces for this config.") - + tasks = [t for t in config.tasks] # Preprocess the task data task_data = {}