Image Classification
Keras
LiteRT
TF-Keras
Safetensors
English
efficientnetv2-s
efficientnetv2
fgic
transfer-learning
gem-pooling
focal-loss
swa
grad-cam
calibration
temperature-scaling
computer-vision
tensorflow.js
Eval Results (legacy)
Instructions to use 0xgr3y/Arch-Building-Image-Classification with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Keras
How to use 0xgr3y/Arch-Building-Image-Classification with Keras:
# Available backend options are: "jax", "torch", "tensorflow". import os os.environ["KERAS_BACKEND"] = "jax" import keras model = keras.saving.load_model("hf://0xgr3y/Arch-Building-Image-Classification") - Notebooks
- Google Colab
- Kaggle
| { | |
| "image_processing": { | |
| "size": { | |
| "width": 320, | |
| "height": 320 | |
| }, | |
| "resample": "bilinear", | |
| "normalize": true, | |
| "mode": "densenet_preprocess_input", | |
| "channel_order": "RGB", | |
| "mean": [123.675, 116.28, 103.53], | |
| "std": [58.395, 57.12, 57.375], | |
| "scale": 1.0, | |
| "description": "Gunakan tf.keras.applications.densenet.preprocess_input untuk preprocessing otomatis. Untuk TF-Lite manual: RGB->BGR, subtract ImageNet mean. Catatan: preprocessor_config.json menyimpan 'BGR' untuk referensi DenseNet ImageNet, tapi densenet.preprocess_input() bekerja pada RGB input dan menangani konversi internal." | |
| }, | |
| "input_name": "input_1", | |
| "output_name": "output_1", | |
| "input_shape": [1, 320, 320, 3], | |
| "output_shape": [1, 6] | |
| } | |