mirror of
https://github.com/huggingface/transformers.git
synced 2025-07-06 22:30:09 +06:00

* First commit while I figure this out * make fixup * Remove unused method * Store prompt attrib * Fix prompt argument for tests * Make same changes in fast tokenizer * Remove global prompts from fast tokenizer too * stash commit * stash commit * Migrate PromptConfig to its True Final Location * Replace Conversation entirely with the new class * Import/dependency fixes * Import/dependency fixes * Change format for lots of default prompts * More default prompt fixups * Revert llama old methods so we can compare * Fix some default configs * Fix some default configs * Fix misspelled kwarg * Fixes for Blenderbot * make fixup * little rebase cleanup * Add basic documentation * Quick doc fix * Truncate docstring for now * Add handling for the case when messages is a single string * Quick llama merges * Update conversational pipeline and tests * Add a couple of legacy properties for backward compatibility * More legacy handling * Add docstring for build_conversation_input_ids * Restructure PromptConfig * Let's start T E M P L A T I N G * Refactor all default configs to use templates instead * Revert changes to the special token properties since we don't need them anymore * More class templates * Make the sandbox even sandier * Everything replaced with pure templating * Remove docs for PromptConfig * Add testing and optional requirement boilerplate * Fix imports and make fixup * Fix LLaMA tests and add Conversation docstring * Finally get LLaMA working with the template system * Finally get LLaMA working with the template system * make fixup * make fixup * fmt-off for the long lists of test tokens * Rename method to apply_chat_template for now * Start on documentation * Make chat_template a property that reads through to the default if it's not set * Expand docs * Expand chat templating doc some more * trim/lstrip blocks by default and update doc * Few doc tweaks * rebase cleanup * Clarify docstring * rebase cleanup * rebase cleanup * make fixup * Quick doc edit * Reformat the standard template to match ChatML * Re-add PEFT check * Update docs/source/en/chat_templating.md Co-authored-by: Patrick von Platen <patrick.v.platen@gmail.com> * Add apply_chat_template to the tokenizer doc * make fixup * Add doc links * Fix chat links * Fix chat links * Explain system messages in the doc * Add chat template test * Proper save-loading for chat template attribute * Add test skips for layout models * Remove _build_conversation_input_ids, add default_chat_template to code_llama * Make sure all LLaMA models are using the latest template * Remove default_system_prompt block in code_llama because it has no default prompt * Update ConversationPipeline preprocess * Add correct #Copied from links to the default_chat_templates * Remove unneeded type checking line * Add a dummy mark_processsed method * Reorganize Conversation to have **deprecated_kwargs * Update chat_templating.md * Quick fix to LLAMA tests * Small doc tweaks * Add proper docstrings and "copied from" statements to all default chat templates * Merge use_default_system_prompt support for code_llama too * Improve clarity around self.chat_template * Docstring fix * Fix blenderbot default template * More doctest fix * Break out some tokenizer kwargs * Update doc to explain default templates * Quick tweaks to tokenizer args * Cleanups for tokenizer args * Add note about cacheing * Quick tweak to the chat-templating doc * Update the LLaMA template with error checking and correct system message embedding * make fixup * make fixup * add requires_jinja * Cleanup to expected output formatting * Add cacheing * Fix typo in llama default template * Update LLaMA tests * Update documentation * Improved legacy handling in the Conversation class * Update Jinja template with proper error handling * Quick bugfix * Proper exception raising * Change cacheing behaviour so it doesn't try to pickle an entire Jinja env * make fixup * rebase cleanup --------- Co-authored-by: Patrick von Platen <patrick.v.platen@gmail.com>
75 lines
3.4 KiB
Python
75 lines
3.4 KiB
Python
#!/usr/bin/env python3
|
|
# coding=utf-8
|
|
# Copyright 2020 The HuggingFace Team. 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.
|
|
"""Tests for Blenderbot Tokenizers, including common tests for BlenderbotSmallTokenizer."""
|
|
import unittest
|
|
|
|
from transformers import BlenderbotTokenizer, BlenderbotTokenizerFast
|
|
from transformers.testing_utils import require_jinja
|
|
from transformers.utils import cached_property
|
|
|
|
|
|
class Blenderbot3BTokenizerTests(unittest.TestCase):
|
|
@cached_property
|
|
def tokenizer_3b(self):
|
|
return BlenderbotTokenizer.from_pretrained("facebook/blenderbot-3B")
|
|
|
|
@cached_property
|
|
def rust_tokenizer_3b(self):
|
|
return BlenderbotTokenizerFast.from_pretrained("facebook/blenderbot-3B")
|
|
|
|
def test_encode_decode_cycle(self):
|
|
tok = self.tokenizer_3b
|
|
src_text = " I am a small frog."
|
|
encoded = tok([src_text], padding=False, truncation=False)["input_ids"]
|
|
decoded = tok.batch_decode(encoded, skip_special_tokens=True, clean_up_tokenization_spaces=False)[0]
|
|
assert src_text == decoded
|
|
|
|
def test_encode_decode_cycle_rust_tokenizer(self):
|
|
tok = self.rust_tokenizer_3b
|
|
src_text = " I am a small frog."
|
|
encoded = tok([src_text], padding=False, truncation=False)["input_ids"]
|
|
decoded = tok.batch_decode(encoded, skip_special_tokens=True, clean_up_tokenization_spaces=False)[0]
|
|
assert src_text == decoded
|
|
|
|
def test_3B_tokenization_same_as_parlai(self):
|
|
assert self.tokenizer_3b.add_prefix_space
|
|
assert self.tokenizer_3b([" Sam", "Sam"]).input_ids == [[5502, 2], [5502, 2]]
|
|
|
|
def test_3B_tokenization_same_as_parlai_rust_tokenizer(self):
|
|
assert self.rust_tokenizer_3b.add_prefix_space
|
|
assert self.rust_tokenizer_3b([" Sam", "Sam"]).input_ids == [[5502, 2], [5502, 2]]
|
|
|
|
@require_jinja
|
|
def test_tokenization_for_chat(self):
|
|
tok = self.tokenizer_3b
|
|
test_chats = [
|
|
[{"role": "system", "content": "You are a helpful chatbot."}, {"role": "user", "content": "Hello!"}],
|
|
[
|
|
{"role": "system", "content": "You are a helpful chatbot."},
|
|
{"role": "user", "content": "Hello!"},
|
|
{"role": "assistant", "content": "Nice to meet you."},
|
|
],
|
|
[{"role": "assistant", "content": "Nice to meet you."}, {"role": "user", "content": "Hello!"}],
|
|
]
|
|
tokenized_chats = [tok.apply_chat_template(test_chat) for test_chat in test_chats]
|
|
expected_tokens = [
|
|
[553, 366, 265, 4792, 3879, 73, 311, 21, 228, 228, 6950, 8, 2],
|
|
[553, 366, 265, 4792, 3879, 73, 311, 21, 228, 228, 6950, 8, 228, 3490, 287, 2273, 304, 21, 2],
|
|
[3490, 287, 2273, 304, 21, 228, 228, 6950, 8, 2],
|
|
]
|
|
for tokenized_chat, expected_tokens in zip(tokenized_chats, expected_tokens):
|
|
self.assertListEqual(tokenized_chat, expected_tokens)
|