18 lines
475 B
Python
18 lines
475 B
Python
from datasets import load_dataset
|
|
from modules.utils import process_dataset
|
|
|
|
def process_func(input_dict: dict):
|
|
return {
|
|
"promopt": input_dict["prompt"],
|
|
"chosen": input_dict["chosen"],
|
|
"rejected": input_dict["rejected"]
|
|
}
|
|
|
|
|
|
if __name__ == "__main__":
|
|
dataset = load_dataset("wenbopan/Chinese-dpo-pairs")
|
|
process_dataset(
|
|
dataset_dict=dataset,
|
|
output_subdir="Chinese-dpo-pairs",
|
|
process_func=process_func
|
|
) |