Keras tutorial 졸업한 사람 vs 실제로 ship 하는 사람 가르는 패턴들. KerasTuner 로 hyperparameter sweep, mixed-precision (FP16/BF16) 으로 2-3 배 속도, multi-GPU distribution strategy, post-training quantization, knowledge distillation, training 이 조용히 망가질 때의 debugging playbook.
KerasTuner — hyperparameter sweep 자동화. RandomSearch / BayesianOptimization / Hyperband 알고리즘 제공. tuner = keras_tuner.RandomSearch(build_model, max_trials=10) 같이 search 객체 만들고 tuner.search(x, y, ...).
build_model(hp) 가 hyperparameter 객체 받아 model 반환. hp.Int('units', 32, 256, step=32) 같이 search space 정의. tuner 가 trial 마다 다른 값 시도, 가장 좋은 model 반환.