diff --git a/src/instructlab/training/data_process.py b/src/instructlab/training/data_process.py index 3fa61781..180404cd 100644 --- a/src/instructlab/training/data_process.py +++ b/src/instructlab/training/data_process.py @@ -355,7 +355,7 @@ def main(args: DataProcessArgs): ) data_with_labels = data_with_labels.select_columns(["labels", "input_ids", "len"]) # use path to get the stem of the file - data_with_labels.to_json(Path(args.data_output_path) / f"data.jsonl") + data_with_labels.to_json(Path(args.data_output_path) / "data.jsonl") if __name__ == "__main__":