We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I tried to use the same prompt from this example and compare the output tokens with those from vllm with llama3.2-1B. https://github.com/vllm-project/vllm/blob/main/examples/offline_inference.py#L5
It does not generate the expected outcome. To reproduce it, I use the following prompt and seed:
prompt = "Hello, my name is" random.seed(32) torch.manual_seed(32)
output_text = tokenizer.decode(output_ids) print(f'output_text: {output_text}') # output_text: ersetvod
Looks like it is missing a prefill step.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I tried to use the same prompt from this example and compare the output tokens with those from vllm with llama3.2-1B.
https://github.com/vllm-project/vllm/blob/main/examples/offline_inference.py#L5
It does not generate the expected outcome. To reproduce it, I use the following prompt and seed:
Looks like it is missing a prefill step.
The text was updated successfully, but these errors were encountered: