We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 98e04be commit 3c2526aCopy full SHA for 3c2526a
tests/llm/accuracy_conformance.py
@@ -49,7 +49,7 @@ def init_test_scope():
49
tokenizer.save_pretrained(model_path)
50
51
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")
+ ov_model_path = model_path + os.path.join(tmp_dir, model_type + "_ov")
53
ov_model.save_pretrained(ov_model_path)
54
tokenizer.save_pretrained(ov_model_path)
55
del ov_model
0 commit comments