Commit
·
ac3b99b
1
Parent(s):
9d825ab
fix: unfound error with html
Browse files- app.py +1 -1
- requirements.txt +1 -2
app.py
CHANGED
|
@@ -63,7 +63,7 @@ select_file = image_select(
|
|
| 63 |
|
| 64 |
upload_file = st.file_uploader("Upload an image:", type=['png','jpg','jpeg'])
|
| 65 |
|
| 66 |
-
st.
|
| 67 |
|
| 68 |
# Checking the Format of the page
|
| 69 |
if upload_file or select_file:
|
|
|
|
| 63 |
|
| 64 |
upload_file = st.file_uploader("Upload an image:", type=['png','jpg','jpeg'])
|
| 65 |
|
| 66 |
+
st.markdown("<hr/>", unsafe_allow_html=True)
|
| 67 |
|
| 68 |
# Checking the Format of the page
|
| 69 |
if upload_file or select_file:
|
requirements.txt
CHANGED
|
@@ -5,5 +5,4 @@ git+https://github.com/openai/CLIP.git
|
|
| 5 |
transformers
|
| 6 |
pytorch-lightning==1.9.0
|
| 7 |
wandb
|
| 8 |
-
streamlit_image_select
|
| 9 |
-
streamlit==1.22.0
|
|
|
|
| 5 |
transformers
|
| 6 |
pytorch-lightning==1.9.0
|
| 7 |
wandb
|
| 8 |
+
streamlit_image_select
|
|
|