SerdarHelli commited on
Commit
d61a390
·
1 Parent(s): 30b7c80

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -4,8 +4,9 @@ import tensorflow as tf
4
  from PIL import Image
5
  import numpy as np
6
  import cv2
 
7
 
8
- model=tf.keras.models.load_model("dental_xray_seg.h5")
9
 
10
  st.header("Segmentation of Teeth in Panoramic X-ray Image Using UNet")
11
 
 
4
  from PIL import Image
5
  import numpy as np
6
  import cv2
7
+ from huggingface_hub import from_pretrained_keras
8
 
9
+ model=from_pretrained_keras("SerdarHelli/Segmentation-of-Teeth-in-Panoramic-X-ray-Image-Using-U-Net")
10
 
11
  st.header("Segmentation of Teeth in Panoramic X-ray Image Using UNet")
12