mirror of
https://github.com/blackboxprogramming/lucidia.git
synced 2026-03-17 05:57:21 -05:00
7 lines
242 B
Python
7 lines
242 B
Python
"""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")
|