Преглед на файлове

Fix default argument in ex 7.2 (#506)

Sebastian Raschka преди 10 месеца
родител
ревизия
9daa7e7511
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  1. 1 1
      ch07/01_main-chapter-code/exercise_experiments.py

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

@@ -541,7 +541,7 @@ if __name__ == "__main__":
     parser.add_argument(
     parser.add_argument(
         "--exercise_solution",
         "--exercise_solution",
         type=str,
         type=str,
-        default="last_block",
+        default="baseline",
         help=(
         help=(
             f"Which experiment to run. Options: {options}."
             f"Which experiment to run. Options: {options}."
         )
         )