-
-
Notifications
You must be signed in to change notification settings - Fork 6k
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
[Bug]: Llama-3.1-405B-Instruct-FP8 only generates exclamation marks #13035
Comments
I have the same issue. |
Same issue. The downgrade worked though. |
Same issue here. |
Same issue. |
Unfortunately, still an issue in v0.7.3. |
Fwiw, setting Server log:
|
Also, not 100% sure if its related, but if you use an high llm = LLM(
model="Qwen/Qwen2.5-72B-Instruct",
tensor_parallel_size=1,
enable_prefix_caching=True,
task="generate"
)
guided_decoding_params = GuidedDecodingParams(json=json_schema, backend="outlines")
caption_sampling_params = SamplingParams(guided_decoding=guided_decoding_params, min_tokens=256)
llm.generate(prompts=[prompt], sampling_params=caption_sampling_params) Reducing the min_tokens helps in this case. |
Your current environment
The output of `python collect_env.py`
🐛 Describe the bug
Hi, I am running into bugs with Llama-3.1-405B-Instruct-FP8 since version 0.7.0.
The initial bug (could not even start the model) was probably fixed with #12696 that was included in 0.7.2. I have tried this new latest version, the model is initiated and service is running but the model generates endless exclamation marks even with frequency penalties and different temperatures.
Run command:
Replication:
Downgrading to vLLM v0.6.6 works.
The text was updated successfully, but these errors were encountered: