You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
tracking in an issue in case we need to fix-forward/revert/or maybe the test is flaky@youkaichao confirmed the test is flaky
def test_chatglm3_lora(chatglm3_lora_files):
llm = vllm.LLM(MODEL_PATH,
max_model_len=1024,
enable_lora=True,
max_loras=4,
max_lora_rank=64,
trust_remote_code=True)
expected_lora_output = [
"SELECT count(*) FROM singer",
"SELECT avg(age) , min(age) , max(age) FROM singer WHERE country = 'France'", # noqa: E501
"SELECT name , country , age FROM singer ORDER BY age",
]
output1 = do_sample(llm, chatglm3_lora_files, lora_id=1)
for i in range(len(expected_lora_output)):
assert output1[i] == expected_lora_output[i]
output2 = do_sample(llm, chatglm3_lora_files, lora_id=2)
for i in range(len(expected_lora_output)):
> assert output2[i] == expected_lora_output[i]
E AssertionError: assert '' == 'SELECT count(*) FROM singer'
E
E - SELECT count(*) FROM singer
The text was updated successfully, but these errors were encountered:
I re-tried the test and it passed. Should be a flaky one.
cadedaniel
changed the title
[Misc] [CI]: Unexpected main branch test failure in test_chatglm3_lora
[Misc] [CI]: Flaky test failure in test_chatglm3_loraApr 9, 2024
fix-forward/revert/or maybe the test is flaky@youkaichao confirmed the test is flakyThe text was updated successfully, but these errors were encountered: