-
Notifications
You must be signed in to change notification settings - Fork 79
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: support new DPO data format and update SFT config to use overri…
…de API (#405) Signed-off-by: Terry Kong <terryk@nvidia.com> Signed-off-by: arendu <adithya.r@gmail.com> Signed-off-by: NeMo-Aligner CI <nemo-aligner-ci@nvidia.com> Co-authored-by: Terry Kong <terryk@nvidia.com> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
- Loading branch information
1 parent
70e4f31
commit 5d4b2a7
Showing
6 changed files
with
224 additions
and
85 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
# Copyright (c) 2023, NVIDIA CORPORATION. All rights reserved. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
"""Script to remove special tokens from dpo datasets | ||
and convert them into list of messages format""" | ||
|
||
import argparse | ||
import json | ||
import re | ||
|
||
|
||
def format_conversation(input_string): | ||
# Define roles and patterns | ||
role_patterns = {"<extra_id_0>System": "system", "<extra_id_1>User": "user", "<extra_id_1>Assistant": "assistant"} | ||
|
||
# Initialize an empty output list | ||
conversation = [] | ||
|
||
# Use regex to find each segment's role and content | ||
segments = re.findall(r"(<extra_id_[0-1]>[^\n]+)\n(.*?)((?=<extra_id_)|$)", input_string, re.DOTALL) | ||
|
||
for segment in segments: | ||
role_tag, content, _ = segment | ||
role = role_patterns.get(role_tag.strip(), "unknown") | ||
conversation.append({"role": role, "content": content.strip()}) | ||
|
||
return conversation | ||
|
||
|
||
if __name__ == "__main__": | ||
parser = argparse.ArgumentParser(description="Process a JSONL file.") | ||
parser.add_argument("input_jsonl", type=str, help="Path to the input JSONL file.") | ||
# Parse the arguments | ||
args = parser.parse_args() | ||
|
||
input_jsonl = args.input_jsonl | ||
output_jsonl = input_jsonl.replace(".jsonl", ".no_special_toks.jsonl") | ||
|
||
with open(input_jsonl, "r") as f, open(output_jsonl, "w") as w: | ||
for line in f: | ||
j = json.loads(line) | ||
prompt = j["prompt"] | ||
undo_spl_prompt = format_conversation(prompt) | ||
empty_assistant = undo_spl_prompt.pop() | ||
chosen, rejected = j["chosen_response"], j["rejected_response"] | ||
chosen = chosen.split("\n<extra_id_1>")[0] | ||
rejected = rejected.split("\n<extra_id_1>")[0] | ||
chosen_message = {"role": empty_assistant["role"], "content": chosen} | ||
rejected_message = {"role": empty_assistant["role"], "content": rejected} | ||
j_out = { | ||
"prompt": undo_spl_prompt, | ||
"chosen_response": chosen_message, | ||
"rejected_response": rejected_message, | ||
"chosen_reward": j["chosen_reward"], | ||
"rejected_reward": j["rejected_reward"], | ||
} | ||
w.write(json.dumps(j_out) + "\n") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
Jinja2~=3.1.4 | ||
jsonlines | ||
megatron_core>=0.8 | ||
nemo_toolkit[nlp] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters