Skip to content

Commit

Permalink
bugfix config data
Browse files Browse the repository at this point in the history
  • Loading branch information
ggbetz committed Apr 20, 2024
1 parent d060b2e commit eb01add
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cot_eval/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ def main():
with tempfile.TemporaryFile() as tmpfile:

df = pd.DataFrame(ds)
df["config_data"] = len(df) * [list(config_data.items())+["task",task]]
df["config_data"] = len(df) * [list(config_data.items())+[("task",task)]]
logging.info(f"Created dataframe with reasoning traces for upload:\n{df.head(3)}")
df.to_parquet(tmpfile, index=False)

Expand Down

0 comments on commit eb01add

Please sign in to comment.