Skip to content

Commit

Permalink
Fixed issue with LLM accuracy tests (#28922)
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexKoff88 authored Feb 12, 2025
1 parent 98e04be commit 3c2526a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/llm/accuracy_conformance.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def init_test_scope():
tokenizer.save_pretrained(model_path)

ov_model = OVModelForCausalLM.from_pretrained(model_path, load_in_8bit=True)
ov_model_path = model_path = os.path.join(tmp_dir, model_type + "_ov")
ov_model_path = model_path + os.path.join(tmp_dir, model_type + "_ov")
ov_model.save_pretrained(ov_model_path)
tokenizer.save_pretrained(ov_model_path)
del ov_model
Expand Down

0 comments on commit 3c2526a

Please sign in to comment.