## Hyperparameter on Command line in Baseline code - If you run like this, it would not work properly. ``` python train.py --batch_size=32 --max_epoch=5 ``` - Then you should change the argument of `.parse_args()`. `args = parser.parse_args(args=[])` ->`args = parser.parse_args()` _reference_ - https://docs.python.org/ko/3/library/argparse.html - https://greeksharifa.github.io/references/2019/02/12/argparse-usage/