llm-foundry
llm-foundry copied to clipboard
`convert_dataset_json.py` does not respect parameter `--split`
https://github.com/mosaicml/llm-foundry/blob/bd8127252c660e45ed01413645d29427f86c085a/scripts/data_prep/convert_dataset_json.py#L204C4-L204C4
out=os.path.join(args.out_root),
should be out=os.path.join(args.out_root, folder_split),
as in convert_dataset_hf.py
.
I will work on fixing this now