library_name: tensorflow | |
license: mit | |
tags: | |
- medical-imaging | |
- x-ray | |
- classification | |
# Chest X-Ray CNN | |
This repo stores a Keras model file: xray_cnn.keras | |
How to load in Python: | |
from huggingface_hub import hf_hub_download | |
import tensorflow as tf | |
p = hf_hub_download("Vedag812/xray_cnn", filename="xray_cnn.keras") | |
model = tf.keras.models.load_model(p, compile=False) | |