We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7beac1b commit 65b7ec2Copy full SHA for 65b7ec2
test/test_cpu/test_gguf_format.py
@@ -329,7 +329,6 @@ def test_vlm_gguf(self):
329
autoround.quantize_and_save(output_dir=quantized_model_path, format="gguf:q4_0")
330
self.assertTrue("mmproj-model.gguf" in os.listdir("./saved"))
331
for file_name in os.listdir(quantized_model_path):
332
- file_name = os.listdir(quantized_model_path)[0]
333
file_size = os.path.getsize(os.path.join(quantized_model_path, file_name)) / 1024**2
334
if file_name == "mmproj-model.gguf":
335
self.assertAlmostEqual(file_size, 2535, delta=1.0)
0 commit comments