소스 검색

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(
         "--exercise_solution",
         type=str,
-        default="last_block",
+        default="baseline",
         help=(
             f"Which experiment to run. Options: {options}."
         )