nishantguvvada commited on
Commit
ac8451b
·
1 Parent(s): 30b32b9

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -9,14 +9,14 @@ import imageio.v3 as iio
9
  def load_model():
10
  model=tf.keras.models.load_model('./hip_impant_model.h5')
11
  return model
12
-
 
 
 
13
  st.write("""
14
  # Image Classification
15
  """
16
  )
17
- image = Image.open('./title.jpg')
18
- st.image(image)
19
- st.title(":red[My AI Journey] :blue[Nishant Guvvada] X-ray Assistant")
20
 
21
  file = st.file_uploader("Upload an X-ray image", type= ['png', 'jpg'])
22
 
 
9
  def load_model():
10
  model=tf.keras.models.load_model('./hip_impant_model.h5')
11
  return model
12
+
13
+ st.title(":blue[Nishant Guvvada's] :red[AI Journey] The Hip-Implant X-ray Assistant")
14
+ image = Image.open('./title.jpg')
15
+ st.image(image)
16
  st.write("""
17
  # Image Classification
18
  """
19
  )
 
 
 
20
 
21
  file = st.file_uploader("Upload an X-ray image", type= ['png', 'jpg'])
22