Skip to content
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

[Model] Add Mistral Tokenization to improve robustness and chat encoding #7739

Merged
merged 66 commits into from
Aug 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
66 commits
Select commit Hold shift + click to select a range
f64f664
WIP
patrickvonplaten Aug 21, 2024
99abde0
WIP
patrickvonplaten Aug 21, 2024
441628b
WIP
patrickvonplaten Aug 21, 2024
3d13b50
WIP
patrickvonplaten Aug 21, 2024
b2f2b2f
WIP
patrickvonplaten Aug 21, 2024
e2b4f29
Reformat
patrickvonplaten Aug 21, 2024
d6bb4d8
Up
patrickvonplaten Aug 21, 2024
3d046b6
Update vllm/entrypoints/chat_utils.py
patrickvonplaten Aug 21, 2024
cfbe3cd
Apply suggestions from code review
patrickvonplaten Aug 21, 2024
8c7d0cf
Apply suggestions from code review
patrickvonplaten Aug 21, 2024
fb092dc
Apply suggestions from code review
patrickvonplaten Aug 21, 2024
9e2df7b
Update vllm/entrypoints/openai/serving_chat.py
patrickvonplaten Aug 21, 2024
662e1ce
Apply suggestions from code review
patrickvonplaten Aug 21, 2024
a56425e
Update vllm/transformers_utils/detokenizer.py
patrickvonplaten Aug 21, 2024
a3744fe
Update vllm/transformers_utils/detokenizer.py
patrickvonplaten Aug 21, 2024
513b4f5
Update vllm/transformers_utils/detokenizer.py
patrickvonplaten Aug 21, 2024
6981440
Update vllm/transformers_utils/detokenizer.py
patrickvonplaten Aug 21, 2024
373bbe7
Apply suggestions from code review
patrickvonplaten Aug 21, 2024
bd00d7d
more format
patrickvonplaten Aug 21, 2024
1ae7b5b
More format
patrickvonplaten Aug 21, 2024
ba4d770
isort
patrickvonplaten Aug 21, 2024
59dd456
isort
patrickvonplaten Aug 21, 2024
73a8341
up
patrickvonplaten Aug 21, 2024
0221276
up
patrickvonplaten Aug 21, 2024
2dee65b
up
patrickvonplaten Aug 21, 2024
f32c3db
up
patrickvonplaten Aug 21, 2024
a7a282d
finish
patrickvonplaten Aug 21, 2024
5460ab6
finish
patrickvonplaten Aug 21, 2024
ba290a4
finish
patrickvonplaten Aug 21, 2024
1780de7
finish
patrickvonplaten Aug 21, 2024
e0e9de1
Merge branch 'main' into add_mistral_common
patrickvonplaten Aug 21, 2024
7034e3a
Update vllm/entrypoints/llm.py
patrickvonplaten Aug 21, 2024
4e543f8
yapf again
patrickvonplaten Aug 21, 2024
0a3ccb4
WIP
patrickvonplaten Aug 22, 2024
dd943da
Merge branch 'add_mistral_common' of https://github.com/patrickvonpla…
patrickvonplaten Aug 22, 2024
5dd4458
Apply suggestions from code review
patrickvonplaten Aug 22, 2024
5c469d6
WIP
patrickvonplaten Aug 22, 2024
9e6e239
WIP
patrickvonplaten Aug 22, 2024
18cff00
yapf again
patrickvonplaten Aug 22, 2024
f711795
yapf again
patrickvonplaten Aug 22, 2024
31a04a9
Up
patrickvonplaten Aug 22, 2024
7a02d3b
Up
patrickvonplaten Aug 22, 2024
b921956
WIP
patrickvonplaten Aug 22, 2024
ec3f035
WIP
patrickvonplaten Aug 22, 2024
d18dc1a
Up
patrickvonplaten Aug 22, 2024
908beed
finish
patrickvonplaten Aug 22, 2024
39a9234
WIP
patrickvonplaten Aug 22, 2024
911ec07
Merge branch 'add_mistral_common' of https://github.com/patrickvonpla…
patrickvonplaten Aug 22, 2024
002d0cf
WIP
patrickvonplaten Aug 22, 2024
ba25ce7
finish
patrickvonplaten Aug 22, 2024
4dbf270
WIP
patrickvonplaten Aug 22, 2024
e1a190c
Merge branch 'add_mistral_common' of https://github.com/patrickvonpla…
patrickvonplaten Aug 22, 2024
50296c5
WIP
patrickvonplaten Aug 22, 2024
cb48bfc
WIP
patrickvonplaten Aug 22, 2024
3d43014
WIP
patrickvonplaten Aug 22, 2024
1481229
WIP
patrickvonplaten Aug 22, 2024
4963015
finish
patrickvonplaten Aug 22, 2024
25ceeb1
finish
patrickvonplaten Aug 22, 2024
4e99ef4
WIP
patrickvonplaten Aug 24, 2024
91e5027
isort
patrickvonplaten Aug 24, 2024
61c1817
Trigger CI build
patrickvonplaten Aug 25, 2024
daf9a25
Trigger CI build
patrickvonplaten Aug 25, 2024
e3c8046
Trigger CI build
patrickvonplaten Aug 25, 2024
eba5658
Trigger CI build
patrickvonplaten Aug 27, 2024
ba08ee6
Trigger CI build
patrickvonplaten Aug 27, 2024
b905f1e
Trigger CI build
patrickvonplaten Aug 27, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/requirements-docs.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,5 @@ pydantic >= 2.8
torch
py-cpuinfo
transformers
mistral_common >= 1.3.4
openai # Required by docs/source/serving/openai_compatible_server.md's vllm.entrypoints.openai.cli_args
1 change: 1 addition & 0 deletions requirements-common.txt
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,4 @@ librosa # Required for audio processing
soundfile # Required for audio processing
gguf == 0.9.1
importlib_metadata
mistral_common >= 1.3.4
4 changes: 3 additions & 1 deletion tests/models/test_mistral.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,11 @@ def test_models(
hf_outputs = hf_model.generate_greedy_logprobs_limit(
example_prompts, max_tokens, num_logprobs)

with vllm_runner(model, dtype=dtype) as vllm_model:
with vllm_runner(model, dtype=dtype,
tokenizer_mode="mistral") as vllm_model:
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Tested and passes with tokenizer_mode="mistral"

vllm_outputs = vllm_model.generate_greedy_logprobs(
example_prompts, max_tokens, num_logprobs)

check_logprobs_close(
outputs_0_lst=hf_outputs,
outputs_1_lst=vllm_outputs,
Expand Down
7 changes: 4 additions & 3 deletions vllm/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,8 @@ class ModelConfig:
output when `served_model_name` is not specified.
tokenizer: Name or path of the huggingface tokenizer to use.
tokenizer_mode: Tokenizer mode. "auto" will use the fast tokenizer if
available, and "slow" will always use the slow tokenizer.
available, "slow" will always use the slow tokenizer, and
"mistral" will always use the tokenizer from `mistral_common`.
trust_remote_code: Trust remote code (e.g., from HuggingFace) when
downloading the model and tokenizer.
dtype: Data type for model weights and activations. The "auto" option
Expand Down Expand Up @@ -240,10 +241,10 @@ def _init_multimodal_config(

def _verify_tokenizer_mode(self) -> None:
tokenizer_mode = self.tokenizer_mode.lower()
if tokenizer_mode not in ["auto", "slow"]:
if tokenizer_mode not in ["auto", "slow", "mistral"]:
raise ValueError(
f"Unknown tokenizer mode: {self.tokenizer_mode}. Must be "
"either 'auto' or 'slow'.")
"either 'auto', 'slow' or 'mistral'.")
self.tokenizer_mode = tokenizer_mode

def _verify_embedding_mode(self) -> None:
Expand Down
5 changes: 3 additions & 2 deletions vllm/engine/arg_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -197,10 +197,11 @@ def add_cli_args(parser: FlexibleArgumentParser) -> FlexibleArgumentParser:
'--tokenizer-mode',
type=str,
default=EngineArgs.tokenizer_mode,
choices=['auto', 'slow'],
choices=['auto', 'slow', 'mistral'],
help='The tokenizer mode.\n\n* "auto" will use the '
'fast tokenizer if available.\n* "slow" will '
'always use the slow tokenizer.')
'always use the slow tokenizer. \n* '
'"mistral" will always use the `mistral_common` tokenizer.')
parser.add_argument('--trust-remote-code',
action='store_true',
help='Trust remote code from huggingface.')
Expand Down
4 changes: 1 addition & 3 deletions vllm/entrypoints/chat_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ def apply_chat_template(
*,
tokenize: bool = False, # Different from HF's default
**kwargs: Any,
) -> str:
) -> Union[str, List[int]]:
if chat_template is None and tokenizer.chat_template is None:
raise ValueError(
"As of transformers v4.44, default chat template is no longer "
Expand All @@ -278,6 +278,4 @@ def apply_chat_template(
tokenize=tokenize,
**kwargs,
)
assert isinstance(prompt, str)

return prompt
12 changes: 9 additions & 3 deletions vllm/entrypoints/llm.py
Original file line number Diff line number Diff line change
Expand Up @@ -388,15 +388,21 @@ def chat(
conversations, _ = parse_chat_messages(messages, model_config,
tokenizer)

prompts = apply_chat_template(
prompt = apply_chat_template(
tokenizer,
conversations,
chat_template=chat_template,
add_generation_prompt=add_generation_prompt)

inputs: PromptInputs
if isinstance(prompt, list) and isinstance(prompt[0], int):
inputs = TokensPrompt(prompt_token_ids=prompt)
else:
inputs = TextPrompt(prompt=prompt)

return self.generate(
prompts,
sampling_params,
inputs,
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

passing prompts as string was deprecated anyways I believe

sampling_params=sampling_params,
use_tqdm=use_tqdm,
lora_request=lora_request,
)
Expand Down
26 changes: 18 additions & 8 deletions vllm/entrypoints/openai/serving_chat.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@
FunctionCall, ToolCall, UsageInfo)
from vllm.entrypoints.openai.serving_engine import (LoRAModulePath,
OpenAIServing,
PromptAdapterPath)
PromptAdapterPath,
TextTokensPrompt)
from vllm.inputs import TokensPrompt
from vllm.logger import init_logger
from vllm.multimodal import MultiModalDataDict
Expand Down Expand Up @@ -130,13 +131,22 @@ async def create_chat_completion(
guided_decode_logits_processor = (
await self._guided_decode_logits_processor(request, tokenizer))

prompt_inputs = self._tokenize_prompt_input(
request,
tokenizer,
prompt,
truncate_prompt_tokens=request.truncate_prompt_tokens,
add_special_tokens=request.add_special_tokens,
)
if isinstance(prompt, str):
prompt_inputs = self._tokenize_prompt_input(
request,
tokenizer,
prompt,
truncate_prompt_tokens=request.truncate_prompt_tokens,
add_special_tokens=request.add_special_tokens,
)
else:
assert isinstance(prompt, list) and isinstance(
prompt[0], int
), "Prompt has to be either a string or a list of token ids"
prompt_inputs = TextTokensPrompt(
prompt=tokenizer.decode(prompt), prompt_token_ids=prompt)
Comment on lines +143 to +147
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm currently working on refactoring some of the chat API code. @patrickvonplaten is there a particular reason why self._tokenize_prompt_input doesn't work on the prompt tokens outputted by mistral tokenizer?


assert prompt_inputs is not None

sampling_params = request.to_sampling_params(
tokenizer,
Expand Down
2 changes: 1 addition & 1 deletion vllm/transformers_utils/detokenizer.py
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ def convert_prompt_ids_to_tokens(
prefix_offset = max(
read_offset - INITIAL_INCREMENTAL_DETOKENIZATION_OFFSET, 0)
# This is required to guard against out-of-vocab prompt token ids
_replace_none_with_empty(new_tokens)
_replace_none_with_empty(new_tokens) # type: ignore[arg-type]
patrickvonplaten marked this conversation as resolved.
Show resolved Hide resolved
return new_tokens, prefix_offset, read_offset


Expand Down
94 changes: 58 additions & 36 deletions vllm/transformers_utils/tokenizer.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import os
import warnings
from pathlib import Path
from typing import Optional, Union

Expand All @@ -9,12 +10,14 @@
from vllm.envs import VLLM_USE_MODELSCOPE
from vllm.logger import init_logger
from vllm.lora.request import LoRARequest
from vllm.transformers_utils.tokenizers import BaichuanTokenizer
from vllm.transformers_utils.tokenizers import (BaichuanTokenizer,
MistralTokenizer)
from vllm.utils import make_async

logger = init_logger(__name__)

AnyTokenizer = Union[PreTrainedTokenizer, PreTrainedTokenizerFast]
AnyTokenizer = Union[PreTrainedTokenizer, PreTrainedTokenizerFast,
MistralTokenizer]


def get_cached_tokenizer(tokenizer: AnyTokenizer) -> AnyTokenizer:
Expand Down Expand Up @@ -99,45 +102,64 @@ def get_tokenizer(
kwargs["gguf_file"] = Path(tokenizer_name).name
tokenizer_name = Path(tokenizer_name).parent

try:
tokenizer = AutoTokenizer.from_pretrained(
tokenizer_name,
*args,
trust_remote_code=trust_remote_code,
revision=revision,
**kwargs)
except ValueError as e:
# If the error pertains to the tokenizer class not existing or not
# currently being imported, suggest using the --trust-remote-code flag.
if (not trust_remote_code and
("does not exist or is not currently imported." in str(e)
or "requires you to execute the tokenizer file" in str(e))):
err_msg = (
"Failed to load the tokenizer. If the tokenizer is a custom "
"tokenizer not yet available in the HuggingFace transformers "
"library, consider setting `trust_remote_code=True` in LLM "
"or using the `--trust-remote-code` flag in the CLI.")
raise RuntimeError(err_msg) from e
else:
raise e
except AttributeError as e:
if "BaichuanTokenizer" in str(e):
# This is for the error "'BaichuanTokenizer' object has no
# attribute 'sp_model'".
tokenizer = BaichuanTokenizer.from_pretrained(
# if tokenizer is from official mistral org
is_from_mistral_org = str(tokenizer_name).split("/")[0] == "mistralai"
if is_from_mistral_org and tokenizer_mode != "mistral":
warnings.warn(
patrickvonplaten marked this conversation as resolved.
Show resolved Hide resolved
'It is strongly recommended to run mistral models with '
'`--tokenizer_mode "mistral"` to ensure correct '
'encoding and decoding.',
FutureWarning,
stacklevel=2)

if tokenizer_mode == "mistral":
tokenizer = MistralTokenizer.from_pretrained(str(tokenizer_name),
revision=revision)
else:
try:
tokenizer = AutoTokenizer.from_pretrained(
tokenizer_name,
*args,
trust_remote_code=trust_remote_code,
revision=revision,
**kwargs)
else:
raise e
**kwargs,
)
except ValueError as e:
# If the error pertains to the tokenizer class not existing or not
# currently being imported,
# suggest using the --trust-remote-code flag.
if not trust_remote_code and (
"does not exist or is not currently imported." in str(e)
or "requires you to execute the tokenizer file" in str(e)):
err_msg = ("Failed to load the tokenizer. If the tokenizer "
"is a custom tokenizer not yet available in the "
"HuggingFace transformers library, consider "
"setting `trust_remote_code=True` in LLM or using "
"the `--trust-remote-code` flag in the CLI.")
raise RuntimeError(err_msg) from e
else:
raise e
except AttributeError as e:
if "BaichuanTokenizer" in str(e):
# This is for the error "'BaichuanTokenizer' object has no
# attribute 'sp_model'".
tokenizer = BaichuanTokenizer.from_pretrained(
tokenizer_name,
*args,
trust_remote_code=trust_remote_code,
revision=revision,
**kwargs,
)
else:
raise e

if not isinstance(tokenizer, PreTrainedTokenizerFast):
logger.warning(
"Using a slow tokenizer. This might cause a significant "
"slowdown. Consider using a fast tokenizer instead.")
tokenizer = get_cached_tokenizer(tokenizer)

if not isinstance(tokenizer, PreTrainedTokenizerFast):
logger.warning(
"Using a slow tokenizer. This might cause a significant "
"slowdown. Consider using a fast tokenizer instead.")
return get_cached_tokenizer(tokenizer)
return tokenizer


def get_lora_tokenizer(lora_request: LoRARequest, *args,
Expand Down
5 changes: 2 additions & 3 deletions vllm/transformers_utils/tokenizers/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
from vllm.transformers_utils.tokenizers.baichuan import BaichuanTokenizer
from vllm.transformers_utils.tokenizers.mistral import MistralTokenizer

__all__ = [
"BaichuanTokenizer",
]
__all__ = ["BaichuanTokenizer", "MistralTokenizer"]
Loading
Loading