浏览代码

fix ch07 unit test (#470)

Sebastian Raschka 10 月之前
父节点
当前提交
2d7ca7ee4b
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      ch07/01_main-chapter-code/tests.py

+ 1 - 1
ch07/01_main-chapter-code/tests.py

@@ -10,7 +10,7 @@ import subprocess
 
 
 def test_gpt_class_finetune():
-    command = ["python", "ch06/01_main-chapter-code/gpt_class_finetune.py", "--test_mode"]
+    command = ["python", "ch07/01_main-chapter-code/gpt_instruction_finetuning.py", "--test_mode"]
 
     result = subprocess.run(command, capture_output=True, text=True)
     assert result.returncode == 0, f"Script exited with errors: {result.stderr}"