mirror of
https://github.com/blackboxprogramming/lucidia.git
synced 2026-03-17 05:57:21 -05:00
7 lines
206 B
Python
7 lines
206 B
Python
"""Dataset builder for RLHF pairs."""
|
|
|
|
|
|
def build_rlhf_pairs(input_path, output_path):
|
|
"""Build RLHF training pairs from raw data."""
|
|
raise NotImplementedError("RLHF pairs builder not implemented")
|