모델은 engineering 의 30%, data pipeline 이 나머지 70%. Keras 3 는 모델 graph *안에서* 돌아가는 preprocessing layer (image augmentation, text vectorization, normalization) 가 강력해 — 저장된 model 에 같이 따라가. 거기에 `tf.data`, `torch.DataLoader`, `grain` 붙이는 법까지.
Keras 3 의 차별점 — 전처리도 *layer*. Rescaling, Normalization, RandomFlip, RandomRotation, TextVectorization, IntegerLookup 등. 모델 graph 안에서 동작 → saved model 에 동행 → deploy 시 동일 전처리 자동 보장.
두 패턴: (1) 모델 일부로 (graph 에 박힘) — deploy 안전, (2) tf.data pipeline 에서 (학습 속도 ↑) — deploy 시 직접 또 박아야. 권장: 가능하면 (1).