-
Notifications
You must be signed in to change notification settings - Fork 487
Add chat template check for sft #3350
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
ChingTsai
wants to merge
1
commit into
main
Choose a base branch
from
jimmytsai/add-template-check-for-sft
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 |
|---|---|---|
|
|
@@ -19,17 +19,19 @@ | |
| import pytest | ||
| import numpy as np | ||
| import jax | ||
| import re | ||
| from jax.sharding import Mesh | ||
| from jax.experimental import mesh_utils | ||
| from datasets import Dataset | ||
| import transformers | ||
| from parameterized import parameterized_class | ||
|
|
||
| from unittest.mock import patch | ||
| from maxtext.configs import pyconfig | ||
| from maxtext.utils.globals import MAXTEXT_PKG_DIR, MAXTEXT_CONFIGS_DIR, MAXTEXT_ASSETS_ROOT | ||
| from maxtext.input_pipeline import hf_data_processing | ||
| from maxtext.input_pipeline import input_pipeline_interface | ||
| from maxtext.input_pipeline.hf_data_processing import _get_pad_id | ||
| from maxtext.input_pipeline.input_pipeline_utils import verify_chat_template_generation_prompt_logic | ||
|
|
||
| PROMPT_DATA = [ | ||
| [ | ||
|
|
@@ -480,5 +482,51 @@ def test_system_message_not_at_beginning(self): | |
| self.get_data_iterator(dataset, ["messages"]) | ||
|
|
||
|
|
||
| @pytest.mark.external_training | ||
| class SFTChatTemplateLogicTest(unittest.TestCase): | ||
| LLAMA_TOKENIZER_PATH = os.path.join(MAXTEXT_ASSETS_ROOT, "llama2-chat-tokenizer") | ||
|
|
||
| @classmethod | ||
| def setUpClass(cls): | ||
| super().setUpClass() | ||
| if not os.path.exists(cls.LLAMA_TOKENIZER_PATH): | ||
| exit_code = subprocess.call( | ||
| [ | ||
| "gsutil", | ||
| "cp", | ||
| "-r", | ||
| "gs://maxtext-dataset/hf/llama2-chat-tokenizer", | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. is it okay to use a private gs: location ?
Collaborator
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. hi @SurbhiJainUSC , |
||
| os.path.join(MAXTEXT_ASSETS_ROOT, ""), | ||
| ] | ||
| ) | ||
| if exit_code != 0: | ||
| raise ValueError("Failed to download llama tokenizer") | ||
|
|
||
| def setUp(self): | ||
| super().setUp() | ||
| self.qwen3_tokenizer = transformers.AutoTokenizer.from_pretrained("Qwen/Qwen3-4B") | ||
| self.llama2_tokenizer = transformers.AutoTokenizer.from_pretrained(self.LLAMA_TOKENIZER_PATH) | ||
|
|
||
| def test_tokenizer_w_generation_prompt(self): | ||
| verify_chat_template_generation_prompt_logic(self.qwen3_tokenizer) | ||
|
|
||
| def test_tokenizer_wo_generation_prompt(self): | ||
| verify_chat_template_generation_prompt_logic(self.llama2_tokenizer) | ||
|
|
||
| def test_failure_path_with_modified_template(self): | ||
| """Verifies the function correctly raises a ValueError on a bad template.""" | ||
| # Replace the role within the existing add_generation_prompt block with a deliberately faulty one. | ||
| fault_chat_template = re.sub( | ||
| r"(\{%-?\s*if add_generation_prompt\s*%\}.*?<\|im_start\|>)assistant(.*?\{%-?\s*endif\s*%\})", | ||
| r"\1wrong_role\2", | ||
| self.qwen3_tokenizer.chat_template, | ||
| flags=re.DOTALL, | ||
| ) | ||
| with patch.object(self.qwen3_tokenizer, "chat_template", fault_chat_template): | ||
| # Verify that our function catches the mismatch and raises the expected error | ||
| with self.assertRaisesRegex(ValueError, "Chat template generation prompt mismatch!"): | ||
| verify_chat_template_generation_prompt_logic(self.qwen3_tokenizer) | ||
|
|
||
|
|
||
| if __name__ == "__main__": | ||
| unittest.main() | ||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Refactor the token_ids extraction into a function so it can be reused in
verify_chat_template_generation_prompt_logic.