Spaces:
Runtime error
Runtime error
bhavitvyamalik
commited on
Commit
·
e6c6e8b
1
Parent(s):
099abfc
change static image
Browse files- app.py +0 -1
- apps/mic.py +1 -1
app.py
CHANGED
@@ -192,7 +192,6 @@ def main():
|
|
192 |
app = MultiApp(state)
|
193 |
app.add_app("Article", article.app)
|
194 |
app.add_app("Multilingual Image Captioning", mic.app)
|
195 |
-
# app.add_app("Mask Filling", mlm.app)
|
196 |
app.run()
|
197 |
state.sync()
|
198 |
|
|
|
192 |
app = MultiApp(state)
|
193 |
app.add_app("Article", article.app)
|
194 |
app.add_app("Multilingual Image Captioning", mic.app)
|
|
|
195 |
app.run()
|
196 |
state.sync()
|
197 |
|
apps/mic.py
CHANGED
@@ -73,7 +73,7 @@ def app(state):
|
|
73 |
|
74 |
query1 = st.text_input(
|
75 |
"Enter a URL to an image",
|
76 |
-
value="http://images.cocodataset.org/val2017/
|
77 |
)
|
78 |
|
79 |
col1, col2, col3 = st.beta_columns([2,1, 2])
|
|
|
73 |
|
74 |
query1 = st.text_input(
|
75 |
"Enter a URL to an image",
|
76 |
+
value="http://images.cocodataset.org/val2017/000000397133.jpg",
|
77 |
)
|
78 |
|
79 |
col1, col2, col3 = st.beta_columns([2,1, 2])
|