Skip to content

Commit 3c2526a

Browse files
authored
Fixed issue with LLM accuracy tests (#28922)
1 parent 98e04be commit 3c2526a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/llm/accuracy_conformance.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ def init_test_scope():
4949
tokenizer.save_pretrained(model_path)
5050

5151
ov_model = OVModelForCausalLM.from_pretrained(model_path, load_in_8bit=True)
52-
ov_model_path = model_path = os.path.join(tmp_dir, model_type + "_ov")
52+
ov_model_path = model_path + os.path.join(tmp_dir, model_type + "_ov")
5353
ov_model.save_pretrained(ov_model_path)
5454
tokenizer.save_pretrained(ov_model_path)
5555
del ov_model

0 commit comments

Comments
 (0)