0xgr3y/Arch-Building-Image-Classification
Fine-Grained Image Classification of World Architecture: An EfficientNetV2-S Transfer Learning Approach with Layered Regularization
Architectural Building Image Classifier
Fine-Grained Image Classification (FGIC) of world architectural buildings using CNN transfer learning with EfficientNetV2-S, enhanced with GeM Pooling, Focal Loss, Discriminative AdamW (LR), Stochastic Weight Averaging (SWA), Grad-CAM explainability, and calibration analysis.
<table> <tr><td><strong>Architecture</strong></td><td>EfficientNetV2-S + GeM Pooling + Focal Loss + SWA</td></tr> <tr><td><strong>Task</strong></td><td>Fine-Grained Image Classification (FGIC)</td></tr> <tr><td><strong>Test Accuracy</strong></td><td>97.92%</td></tr> <tr><td><strong>Classes</strong></td><td>8 (barn, bridge, castle, mosque, skyscraper, stadium, temple, windmill)</td></tr> <tr><td><strong>Input Size</strong></td><td>320 × 320 pixels</td></tr> <tr><td><strong>Parameters</strong></td><td>23,350,633</td></tr> <tr><td><strong>Framework</strong></td><td>TensorFlow / Keras 3</td></tr> <tr><td><strong>License</strong></td><td><a href="https://www.apache.org/licenses/LICENSE-2.0">Apache-2.0</a></td></tr> </table>
Model Description
A fine-grained image classification model for world architectural buildings. Built on EfficientNetV2-S pretrained on ImageNet, enhanced with GeM Pooling (learnable generalized mean pooling), Focal Loss, Discriminative AdamW and Stochastic Weight Averaging (SWA). Extended with Grad-CAM explainability visualization, ROC-AUC evaluation, ECE calibration analysis, and t-SNE embedding visualization.
Key architectural contributions:
- GeM Pooling (Radenovic et al., CVPR 2018) — replaces global average pooling with a learnable power parameter (p=3.0) that emphasizes high-activation features, yielding stronger discriminative representations for FGIC tasks
- Focal Loss (Lin et al., ICCV 2017, gamma=2.0) — down-weights well-classified examples to focus gradient updates on hard-to-classify building pairs
- DiscriminativeAdamW LR — extends AdamW with per-variable LR scaling on block6 (×0.1) via (updatestep) override, combined with selective fine-tuning (block6+topconv unfrozen, BN frozen). LR scaling produces truly discriminative updates — block6 variables receive 10× smaller learning rate than head variables (117 total: 105 block6 + 12 head)
- Mixup + CutMix (Zhang et al., ICLR 2018. Yun et al., ICCV 2019) — alternating per-batch (50/50): Mixup (alpha=0.2, linear interpolation) and CutMix (alpha=1.0, spatial patch). Applied only in Phase 1 training to regularize head learning
- Selective Unfreeze (Yosinski et al., 2014) — Phase 2 unfreezes block6+top_conv layers (180/513 EfficientNetV2-S layers) while keeping BatchNormalization frozen to preserve pretrained statistics
- SWA with BN re-estimation (Izmailov et al., UAI 2018) — 10-epoch post-training weight averaging with constant LR 1e-4, followed by 100-step batch normalization statistics re-estimation (3,200 images)
- Test-Time Augmentation — 6 variations averaged at inference: original, horizontal flip, center crop 85%, corner crop 70%, corner crop top-left 80%, corner crop bottom-right 80%. Yields +0.22% accuracy improvement (97.92% → 98.14%)
- Grad-CAM (Selvaraju et al., ICCV 2017) — gradient-weighted class activation mapping for explainability, targeting top_conv (last Conv2D layer of EfficientNetV2-S)
- ECE Calibration (Guo et al., ICML 2017) — Expected Calibration Error with 15-bin reliability diagram to assess prediction confidence reliability
- Temperature Scaling (Guo et al., ICML 2017) — post-hoc calibration via scalar temperature parameter T optimized on validation set (NLL minimization). T=0.4645 reduces ECE from 18.13% (underconfident due to Label Smoothing) to 0.95% — applied at inference via (softmax(log(probs) / T)) trick
Architecture
Input (320, 320, 3)
│
EfficientNetV2-S (ImageNet pretrained, 513 layers, 20.33M params)
│
Conv2D(256, 3×3, ReLU, padding=same) → 2,949,376 params
BatchNormalization → 1,024 params
MaxPooling2D(2×2) → 0 params
│
GeM Pooling(p=3.0, eps=1e-6, learnable) → 1 param
│
Dense(256, ReLU) → 65,792 params
BatchNormalization → 1,024 params
Dropout(0.4) → 0 params
│
Dense(8, Softmax) → 2,056 params
│
Output (8 classes)Performance
Overall Metrics
Per-Class Results
Model Selection
Four candidate models were evaluated on the validation set:
Training Progression
Phase 1 ran 25 epochs (maximal), best epoch = 23 withval_accuracy97.54%.EarlyStoppingwithpatience=5was not triggered. Phase 2 ran 7 epochs, best epoch = 2 (val_accuracy97.77%),EarlyStoppingwithpatience=3triggered. SWA ran 10 epochs with constant LR 1e-4, followed by BN re-estimation (100 steps, 3,200 images).
Training Details
Training Strategy
Two-phase progressive training with SWA post-processing:
¹ Phase 1 usesEarlyStoppingwithpatience=5onval_accuracy. Ran 25 epochs (maximal), best epoch = 23 (val_accuracy 97.54%). EarlyStopping was not triggered — model kept improving within every 5-epoch window.
² Phase 2 usesEarlyStoppingwithpatience=3onval_accuracy, followed by 10 SWA epochs (constant LR 1e-4).
Hyperparameters
Regularization Strategy
Dataset
See the dataset curation page for World Architectural Buildings Dataset for Multi‑Class Image Classification — 13,440 images (8 classes × 1,680, balanced) sourced from Pexels with perceptual (pHash) and exact (SHA256) deduplication.
Data Preprocessing
- Normalization:
preprocess_inputfromtf.keras.applications.efficientnet_v2(ImageNet distribution) - Input resolution: 320×320 (higher than ImageNet default 224×224 to capture fine-grained architectural details — textures, ornaments, facade patterns)
- Augmentation: Applied to training set only. validation and test sets use clean preprocessing
- Split method:
splitfolders.ratiofromdataset/, seed=42
Files
Usage
Gradio Space
Try the live building classify: Architecture Building Image Classifier with Space
Python — build_model.py (recommended)
build_model.py is a standalone module that provides:
- Custom class definitions (
GeMPooling,FocalLoss,DiscriminativeAdamW) with@register_keras_serializable— importing the module registers all custom classes globally, soload_model()works without explicitcustom_objects. - `ArchBuildingClassifier` — high-level wrapper class with
build(),from_weights(),from_keras(),predict(),predict_batch()methods. - `CUSTOM_OBJECTS` dict — fallback for explicit
custom_objects=inload_model(). - `build_model()` — backward-compatible function that returns a raw
tf.keras.Model.
Upload build_model.py to the same directory as your script or add it to PYTHONPATH.
Note: Filenames below usefine_tuning_swaas an example. The actual best checkpoint filename depends on training results — check the repo for the actual.keras,.weights.h5, and.safetensorsfilenames.
from build_model import ArchBuildingClassifier
from huggingface_hub import hf_hub_download
# Download weights (clean format)
weights_path = hf_hub_download("0xgr3y/Arch-Building-Image-Classification", "fine_tuning_swa.weights.h5")
# Load model: architecture + weights
clf = ArchBuildingClassifier.from_weights(weights_path)
# Inference
from PIL import Image
import numpy as np
label, confidence, top3 = clf.predict(Image.open("skyscraper_00000.jpg"))
print(f"Predicted: {label} ({confidence:.1%})")
for cls, prob in top3:
print(f" {cls}: {prob:.1%}")Python — TF-Lite (fastest inference)
import numpy as np
import tensorflow as tf
from huggingface_hub import hf_hub_download
from PIL import Image
import json
try:
from tensorflow.keras.applications.efficientnet_v2 import preprocess_input
except (ImportError, ModuleNotFoundError):
from tensorflow.keras.applications.efficientnet import preprocess_input
# Download
model_path = hf_hub_download("0xgr3y/Arch-Building-Image-Classification", "tflite/model.tflite")
labels_path = hf_hub_download("0xgr3y/Arch-Building-Image-Classification", "label_mapping.json")
with open(labels_path) as f:
LABELS = json.load(f)["labels"]
interpreter = tf.lite.Interpreter(model_path=model_path)
interpreter.allocate_tensors()
input_details = interpreter.get_input_details()
output_details = interpreter.get_output_details()
img = Image.open("skyscraper_00000.jpg").convert("RGB").resize((320, 320))
arr = np.expand_dims(preprocess_input(
np.array(img, dtype=np.float32)), axis=0)
interpreter.set_tensor(input_details[0]["index"], arr)
interpreter.invoke()
preds = interpreter.get_tensor(output_details[0]["index"])[0]
top3_idx = np.argsort(preds)[::-1][:3]
for i in top3_idx:
print(f" {LABELS[i]}: {preds[i]*100:.1f}%")Python — Keras (convenient)
import build_model # registers custom classes via @register_keras_serializable
import tensorflow as tf
from huggingface_hub import hf_hub_download
try:
from tensorflow.keras.applications.efficientnet_v2 import preprocess_input
except (ImportError, ModuleNotFoundError):
from tensorflow.keras.applications.efficientnet import preprocess_input
from PIL import Image
import numpy as np
import json
model_path = hf_hub_download("0xgr3y/Arch-Building-Image-Classification", "fine_tuning_swa.keras")
labels_path = hf_hub_download("0xgr3y/Arch-Building-Image-Classification", "label_mapping.json")
model = tf.keras.models.load_model(model_path, compile=False) # custom_objects not needed
with open(labels_path) as f:
LABELS = json.load(f)["labels"]
img = Image.open("skyscraper_00000.jpg").convert("RGB").resize((320, 320))
arr = np.expand_dims(preprocess_input(np.array(img, dtype=np.float32)), axis=0)
preds = model.predict(arr, verbose=0)[0]
print(f"Predicted: {LABELS[np.argmax(preds)]} ({np.max(preds)*100:.1f}%)")Python — SavedModel (TF Serving)
from huggingface_hub import snapshot_download
import tensorflow as tf
import numpy as np
from PIL import Image
try:
from tensorflow.keras.applications.efficientnet_v2 import preprocess_input
except (ImportError, ModuleNotFoundError):
from tensorflow.keras.applications.efficientnet import preprocess_input
snapshot_download("0xgr3y/Arch-Building-Image-Classification", allow_patterns=["saved_model/*"], local_dir=".")
# Load SavedModel (created via model.export() — inference-only, no custom_objects needed)
loaded = tf.saved_model.load("saved_model")
img = Image.open("skyscraper_00000.jpg").convert("RGB").resize((320, 320))
arr = tf.constant(np.expand_dims(preprocess_input(np.array(img, dtype=np.float32)), axis=0))
preds = loaded(arr).numpy()[0]
top3_idx = np.argsort(preds)[::-1][:3]
for i in top3_idx:
print(f" Class {i}: {preds[i]*100:.1f}%")Python — safetensors (HF standard, cross-framework)
Note: safetensors stores raw weight tensors without architecture metadata. To load, reconstruct the architecture withbuild_model.pyfirst, then map tensors manually. For most use cases,.weights.h5(viaArchBuildingClassifier.from_weights()) is simpler and equally clean.
from safetensors.numpy import load_file
from build_model import ArchBuildingClassifier
from PIL import Image
# Reconstruct architecture
clf = ArchBuildingClassifier.build()
# Load safetensors tensors
tensors = load_file("fine_tuning_swa.safetensors")
# Map tensors to model weights (iterate layers, not .variables — Keras 3 compatible)
for layer in clf.keras_model.layers:
for w in layer.weights:
name = w.name.replace(':', '_').replace('/', '_')
if name in tensors:
w.assign(tensors[name])
# Inference
label, confidence, top3 = clf.predict(Image.open("skyscraper_00000.jpg"))Inference Verification
Keras vs TFLite consistency was verified on 8 random test samples (1 per class):
The 1 misclassification (castle→bridge, 41.9% confidence) is consistent with the 97.92% test accuracy. The 8/8 match confirms TFLite conversion preserves model behavior exactly.
Security Notice (PAIT-KERAS-301)
The .keras files in this repository are flagged "Unsafe" by Protect AI Guardian (threat: PAIT-KERAS-301). This is a structural false positive, not a malware detection:
- What the scanner checks: String-matching of
class_namefields in the Keras v3 config against a whitelist of built-in Keras layers. - Why flagged: The model contains a custom layer (
GeMPooling) — a non-standard class name triggers the flag. - What it does NOT check: The scanner does not analyze the Python code of the custom class, does not look for
eval()/exec()/os.system(), and does not detect actual malware. - Other scanners: VirusTotal, JFrog, HF Picklescan — all clean. Only Protect AI flags this file.
The custom classes are safe and open source:
GeMPooling— Generalized Mean Pooling (Radenovic et al., CVPR 2018). Pure tensor ops:tf.pow,tf.reduce_mean,tf.maximum.FocalLoss— Focal Loss (Lin et al., ICCV 2017). Pure tensor ops.DiscriminativeAdamW— AdamW subclass with gradient scaling. No file I/O, no network calls, no arbitrary code.
Full source code for all custom classes is available in `build_model.py` and the training notebook for public audit.
Multi-Format Deployment Guide
With model is provided in multiple formats to suit different deployment scenarios. Formats marked ✓ are not flagged by Protect AI (no custom class serialization).
Load Examples
See Usage section above for complete load + inference examples for each format.
Intended Use
- Architectural style classification from building photographs
- Educational tool for architecture recognition
- Research baseline for fine-grained image classification (FGIC)
- Transfer learning experiments on architectural imagery
Limitations
- Trained on Pexels stock photography — performance may differ on user-generated or field photographs
- Limited to 8 architectural classes (barn, bridge, castle, mosque, skyscraper, stadium, temple, windmill)
- Confusion pair analysis found 0 significant pairs (threshold >5%) — all 8 classes are well-distinguished by the model. see
confusion_pairs.jsonfor details - Barn and windmill share 3 cross-class duplicates (0.02% of dataset) — left as-is due to negligible impact
- Inference confidence can be low on atypical examples
Ethical Considerations
- All training images sourced from Pexels.com under the Pexels License (free for commercial use, no attribution required). No copyrighted or personally identifiable images were used.
- The dataset contains only photographs of buildings and structures — no people, faces, or private property are the subject of classification.
- The model reflects the visual distribution of Pexels stock photography, which may over-represent Western and iconic architectural styles and under-represent vernacular or regional architecture.
- The 8 class categories are broad and do not capture the full diversity of world architecture. Results should not be used to make definitive claims about architectural categorization.
- URL pattern filtering during dataset collection explicitly excluded AI-generated art, illustrations, and non-photographic content to ensure authenticity.
Links
- Gradio Space (Live): arch-building-classifier Space
- Dataset Studio: 0xgr3y/arch-building-dataset
- GitHub Repository: arcxteam/building-architectural-image-classifier
References
- Tan, M., & Le, Q. V. (2021). EfficientNetV2: Smaller Models and Faster Training. ICML 2021. arXiv:2104.00298
- Radenovic, F., Tolias, G., & Chum, O. (2018). Fine-Tuning CNN Image Retrieval with No Human Annotation. IEEE TPAMI. arXiv:1711.02512
- Lin, T.-Y., Goyal, P., Girshick, R., He, K., & Dollar, P. (2017). Focal Loss for Dense Object Detection. ICCV 2017. arXiv:1708.02002
- Izmailov, P., Podoprikhin, D., Garipov, T., Vetrov, D., & Wilson, A. G. (2018). Averaging Weights Leads to Wider Optima and Better Generalization. UAI 2018. arXiv:1803.05407
- Zhang, H., Cisse, M., Dauphin, Y. N., & Lopez-Paz, D. (2018). mixup: Beyond Empirical Risk Minimization. ICLR 2018. arXiv:1710.09412
- Yun, S., Han, D., Oh, S. J., Chun, S., Choe, J., & Yoo, Y. (2019). CutMix: Regularization Strategy to Train Strong Classifiers with Localizable Features. ICCV 2019. arXiv:1905.04899
- Szegedy, C., Vanhoucke, V., Ioffe, S., Shlens, J., & Wojna, Z. (2016). Rethinking the Inception Architecture for Computer Vision. CVPR 2016. arXiv:1512.00567
- Yosinski, J., Clune, J., Bengio, Y., & Lipson, H. (2014). How Transferable Are Features in Deep Neural Networks? NeurIPS 2014. arXiv:1411.1792
- Howard, J., & Ruder, S. (2018). Universal Language Model Fine-tuning for Text Classification. ACL 2018. arXiv:1801.06146
- Srivastava, N., Hinton, G., Krizhevsky, A., Sutskever, I., & Salakhutdinov, R. (2014). Dropout: A Simple Way to Prevent Neural Networks from Overfitting. JMLR, 15(56), 1929–1958. http://jmlr.org/papers/v15/srivastava14a.html
- Ioffe, S., & Szegedy, C. (2015). Batch Normalization: Accelerating Deep Network Training by Reducing Internal Covariate Shift. arXiv preprint. arXiv:1502.03167
- Tarvainen, A., & Valpola, H. (2017). Mean Teachers are Better Role Models: Weight-averaged Consistency Targets Improve Semi-supervised Deep Learning Results. NeurIPS 2017. arXiv:1703.01780
- Perez, L., & Wang, J. (2017). The Effectiveness of Data Augmentation in Image Classification using Deep Learning. arXiv preprint. arXiv:1712.04621
- Shanmugam, D., Blalock, D., Balakrishnan, G., Guttag, J., & Sarma, A. (2020). Towards Principled Test-Time Augmentation. ICML 2020. PDF
- Loshchilov, I., & Hutter, F. (2017). SGDR: Stochastic Gradient Descent with Warm Restarts. ICLR 2017. arXiv:1608.03983
- Prechelt, L. (1998). Automatic Early Stopping Using Cross Validation: Quantifying the Criteria. Neural Networks, 11(4), 761–767. https://doi.org/10.1016/S0893-6080(98)00010-000010-0)
- Guo, C., Pleiss, G., Sun, Y., & Weinberger, K. Q. (2017). On Calibration of Modern Neural Networks. ICML 2017. arXiv:1706.04599
- Selvaraju, R. R., Cogswell, M., Das, A., Vedantam, R., Parikh, D., & Batra, D. (2017). Grad-CAM: Visual Explanations from Deep Networks via Gradient-based Localization. ICCV 2017. arXiv:1610.02391
- van der Maaten, L., & Hinton, G. (2008). Visualizing Data using t-SNE. JMLR, 9(Nov), 2579–2605. http://jmlr.org/papers/v9/vandermaaten08a.html
- Hand, D. J., & Till, R. J. (2001). A Simple Generalisation of the Area Under the ROC Curve for Multiple Class Classification Problems. Machine Learning, 45(2), 171–186. https://doi.org/10.1023/A:1010920819831
- Russakovsky, O., Deng, J., Su, H., Krause, J., Satheesh, S., Ma, S., ... & Fei-Fei, L. (2015). ImageNet Large Scale Visual Recognition Challenge. IJCV, 115(3), 211–252. arXiv:1409.0575
- Lakshminarayanan, B., Pritzel, A., & Blundell, C. (2017). Simple and Scalable Predictive Uncertainty Estimation using Deep Ensembles. NeurIPS 2017. arXiv:1612.01474
Citation
@misc{saugani2026_arch_building,
title={Fine-Grained Image Classification of World Architecture:
An EfficientNetV2-S Transfer Learning Approach with Layered Regularization},
author={Saugani},
year={2026},
publisher={Hugging Face},
url={https://huggingface.co/0xgr3y/Arch-Building-Image-Classification}
}