Add data/build_sft.py with SFT dataset builder stub

This commit is contained in:
blackboxprogramming
2025-08-08 01:16:54 -07:00
committed by GitHub
parent 0576512be0
commit 21b0c343a0

View File

@@ -0,0 +1,6 @@
"""Data builder for supervised fine-tuning dataset."""
def build_sft_dataset(input_paths, output_path):
"""Construct the SFT dataset from raw inputs (placeholder)."""
raise NotImplementedError("SFT dataset builder not implemented")