mirror of
https://github.com/huggingface/text-generation-inference.git
synced 2025-04-19 22:02:06 +00:00
* feat: add neuron backend * feat(neuron): add server standalone installation * feat(neuron): add server and integration tests * fix(neuron): increase ulimit when building image The base image used to compile the rust components seems to have a low ulimit for opened files, which leads to errors during compilation. * test(neuron): merge integration tests and fixtures * test: add --neuron option * review: do not use latest tag * review: remove ureq pinned version * review: --privileged should be the exception * feat: add neuron case to build ci * fix(neuron): export models from container in test fixtures The neuron tests require models to have been previously exported and cached on the hub. This is done automatically by the neuron.model fixture the first time the tests are ran for a specific version. This fixture used to export the models using optimum-neuron directly, but this package is not necessarily present on the system. Instead, it is now done through the neuron TGI itself, since it contains all the tools required to export the models. Note that since the CI runs docker in docker (dind) it does not seem possible to share a volume between the CI container and the container used to export the model. For that reason, a specific image with a modified entrypoint is built on-the-fly when a model export is required. * refactor: remove sagemaker entry-point The SageMaker image is built differently anyway. * fix(neuron): avoid using Levenshtein * test(neuron): use smaller llama model * feat(neuron): avoid installing CUDA in image * test(neuron): no error anymore when requesting too many tokens * ci: doing a precompilation step (with a different token). * test(neuron): avoid using image sha when exporting models We now manually evaluate the apparent hash of the neuron backend by combining the hash of the neuron backend directory and Dockerfile. This new hash is used to identify exported neuron models instead of the image sha. This has two benefits: - it changes less frequently (only hwen the neuron backend changes), which means less neuron models being pushed to the hub, - it can be evaluated locally, meaning that running the tests once locally will export the models before the CI uses them. * test(neuron): added a small script to prune test models --------- Co-authored-by: drbh <david.richard.holtz@gmail.com> Co-authored-by: Nicolas Patry <patry.nicolas@protonmail.com>
56 lines
2.6 KiB
Python
56 lines
2.6 KiB
Python
from helpers import create_request
|
||
from text_generation_server.generator import NeuronGenerator
|
||
from text_generation_server.pb.generate_pb2 import Batch
|
||
|
||
|
||
def test_decode(neuron_model_config):
|
||
"""Verify that a decoding for a single request generates the expected output."""
|
||
config_name = neuron_model_config["name"]
|
||
neuron_model_path = neuron_model_config["neuron_model_path"]
|
||
generator = NeuronGenerator.from_pretrained(neuron_model_path)
|
||
for do_sample in [True, False]:
|
||
mode = "sample" if do_sample else "greedy"
|
||
print(f"{config_name}[{mode}]")
|
||
_test_decode(config_name, generator, do_sample)
|
||
generator.clear()
|
||
|
||
|
||
def _test_decode(config_name, generator, do_sample):
|
||
input_text = "It was a bright cold day in April, and the clocks were striking thirteen."
|
||
max_new_tokens = 20
|
||
request = create_request(id=0, inputs=input_text, max_new_tokens=max_new_tokens, do_sample=do_sample)
|
||
max_length = generator.model.max_length
|
||
batch = Batch(id=0, requests=[request], size=1, max_tokens=max_length)
|
||
generations, next_batch = generator.prefill(batch)
|
||
# We already generated one token: call decode max_new_tokens - 1 times
|
||
for _ in range(max_new_tokens - 1):
|
||
assert next_batch.size == 1
|
||
assert next_batch.max_tokens == max_length
|
||
assert len(generations) == 1
|
||
assert len(generations[0].tokens.ids) == 1
|
||
generations, next_batch = generator.decode([next_batch])
|
||
assert next_batch is None
|
||
assert len(generations) == 1
|
||
output = generations[0].generated_text
|
||
assert output.generated_tokens == max_new_tokens
|
||
assert output.finish_reason == 0
|
||
if do_sample:
|
||
expected_text = {
|
||
"gpt2": " The sun was set",
|
||
"llama": "George Orwell, 1984",
|
||
"mistral": "The sky was",
|
||
"qwen2": " A young woman with",
|
||
"granite": "1984, George Orwell",
|
||
}[config_name]
|
||
assert expected_text in output.text
|
||
else:
|
||
print(output.text)
|
||
expected_text = {
|
||
"gpt2": '\n\n"I\'m going to go to bed," I said.\n\n"I\'m going',
|
||
"llama": " George Orwell’s classic dystopian novel, 1984, begins with this ominous sentence. The story",
|
||
"mistral": "\nThe clocks were striking thirteen.\nThe clocks were striking thirteen.",
|
||
"qwen2": " I was sitting in my room, staring at the ceiling, when the door opened and in came a",
|
||
"granite": "\n\nThis opening line from George Orwell's dystopian novel \"198",
|
||
}[config_name]
|
||
assert output.text == expected_text
|