Vedag812 commited on
Commit
58b718e
·
verified ·
1 Parent(s): 72408b7

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +20 -0
README.md ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ library_name: tensorflow
3
+ license: mit
4
+ tags:
5
+ - medical-imaging
6
+ - x-ray
7
+ - classification
8
+ ---
9
+
10
+ # Chest X-Ray CNN
11
+
12
+ This repo stores a Keras model file: xray_cnn.keras
13
+
14
+ How to load in Python:
15
+
16
+ from huggingface_hub import hf_hub_download
17
+ import tensorflow as tf
18
+
19
+ p = hf_hub_download("Vedag812/xray_cnn", filename="xray_cnn.keras")
20
+ model = tf.keras.models.load_model(p, compile=False)