Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -15,6 +15,14 @@ import numpy as np
|
|
15 |
from tensorflow.keras.models import load_model
|
16 |
import cv2
|
17 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
18 |
|
19 |
def load_image(image):
|
20 |
img = Image.open(image)
|
|
|
15 |
from tensorflow.keras.models import load_model
|
16 |
import cv2
|
17 |
|
18 |
+
#Hide Made with streamlit
|
19 |
+
st.markdown(
|
20 |
+
'''<style>
|
21 |
+
#MainMenu{visibility: hidden;} footer{visibility: hidden;}
|
22 |
+
#root>div:nth-child(1)>div>div>div>div>section>div{padding-top: .2rem;
|
23 |
+
</style>''', unsafe_allow_html=True
|
24 |
+
)
|
25 |
+
|
26 |
|
27 |
def load_image(image):
|
28 |
img = Image.open(image)
|