From 2d7ca7ee4b231abde064ee9c6eca07572d896697 Mon Sep 17 00:00:00 2001 From: Sebastian Raschka Date: Sun, 5 Jan 2025 17:40:57 -0600 Subject: [PATCH] fix ch07 unit test (#470) --- ch07/01_main-chapter-code/tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ch07/01_main-chapter-code/tests.py b/ch07/01_main-chapter-code/tests.py index 40ee892e..1cfe1f3d 100644 --- a/ch07/01_main-chapter-code/tests.py +++ b/ch07/01_main-chapter-code/tests.py @@ -10,7 +10,7 @@ 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}"