From ebfc50f0764f5d9eda271b18ae6e2b0bf4f95283 Mon Sep 17 00:00:00 2001 From: Sebastian Raschka Date: Sat, 25 Jan 2025 10:46:48 -0600 Subject: [PATCH] Fix default argument in ex 7.2 (#506) --- ch07/01_main-chapter-code/exercise_experiments.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ch07/01_main-chapter-code/exercise_experiments.py b/ch07/01_main-chapter-code/exercise_experiments.py index 840284a..88e44d6 100644 --- a/ch07/01_main-chapter-code/exercise_experiments.py +++ b/ch07/01_main-chapter-code/exercise_experiments.py @@ -541,7 +541,7 @@ if __name__ == "__main__": parser.add_argument( "--exercise_solution", type=str, - default="last_block", + default="baseline", help=( f"Which experiment to run. Options: {options}." )