Unverified Commit 46e9d1c7 authored by Lifu Huang's avatar Lifu Huang Committed by GitHub
Browse files

Increase tolerance to address CI failures (#8643)

parent 6c88f6c8
...@@ -42,7 +42,7 @@ class ModelCase: ...@@ -42,7 +42,7 @@ class ModelCase:
model_path: str model_path: str
tp_size: int = 1 tp_size: int = 1
prefill_tolerance: float = 5e-2 prefill_tolerance: float = 5e-2
decode_tolerance: float = 5e-2 decode_tolerance: float = 6e-2 # Increased to fix numerical error in issue #8614.
rouge_l_tolerance: float = 1 rouge_l_tolerance: float = 1
skip_long_prompt: bool = False skip_long_prompt: bool = False
trust_remote_code: bool = False trust_remote_code: bool = False
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment