Update app.py
Browse files
app.py
CHANGED
@@ -7,6 +7,9 @@ from PIL import Image
|
|
7 |
from tensorflow.keras.preprocessing.image import load_img, img_to_array
|
8 |
|
9 |
|
|
|
|
|
|
|
10 |
uploaded_file = st.file_uploader('Upload an image', type=['jpg', 'jpeg', 'png'])
|
11 |
if uploaded_file is not None:
|
12 |
# Write the uploaded image data to a temporary file
|
|
|
7 |
from tensorflow.keras.preprocessing.image import load_img, img_to_array
|
8 |
|
9 |
|
10 |
+
st.title("Nova'23 Classification Model Playground!")
|
11 |
+
st.write("Upload the x-ray image")
|
12 |
+
|
13 |
uploaded_file = st.file_uploader('Upload an image', type=['jpg', 'jpeg', 'png'])
|
14 |
if uploaded_file is not None:
|
15 |
# Write the uploaded image data to a temporary file
|