BK-V commited on
Commit
faf482f
1 Parent(s): 9885633
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -128,7 +128,7 @@ def measure_molar(image_file):
128
  # Load model and images
129
  model = keras.models.load_model(MODEL_PATH)
130
  images = os.listdir(IMAGE_DIR)
131
- images = [f'{IMAGE_DIR}/image' for image in images]
132
 
133
  # UserInterface
134
  st.header("3rdMolar Segmentation")
 
128
  # Load model and images
129
  model = keras.models.load_model(MODEL_PATH)
130
  images = os.listdir(IMAGE_DIR)
131
+ images = [f'{IMAGE_DIR}/{image}' for image in images]
132
 
133
  # UserInterface
134
  st.header("3rdMolar Segmentation")