keras.applications 가 ImageNet pretrained CNN 의 한정된 셋 — ResNet, EfficientNet, MobileNet, VGG, DenseNet, Xception. model = keras.applications.ResNet50(weights='imagenet', include_top=False) — include_top=False 면 classifier head 제거 (custom head 붙이려고).
2024 년 이후 default 는 KerasHub 의 from_preset 패턴이 더 풍부 — Vision Transformer, EfficientNetV2, 더 최신 모델. keras.applications 는 backward-compat 으로 남아있지만 새 코드는 KerasHub 권장.