Spaces:
Runtime error
Runtime error
Commit
·
a938ff4
1
Parent(s):
ffe19d9
Fix examples link
Browse files
app.py
CHANGED
|
@@ -1,4 +1,4 @@
|
|
| 1 |
-
from apps import mlm, vqa, article
|
| 2 |
import streamlit as st
|
| 3 |
from session import _get_state
|
| 4 |
from multiapp import MultiApp
|
|
@@ -25,7 +25,7 @@ def main():
|
|
| 25 |
app.add_app("Article", article.app)
|
| 26 |
app.add_app("Visual Question Answering", vqa.app)
|
| 27 |
app.add_app("Mask Filling", mlm.app)
|
| 28 |
-
app.add_app("Examples",
|
| 29 |
app.run()
|
| 30 |
state.sync()
|
| 31 |
|
|
|
|
| 1 |
+
from apps import mlm, vqa, article, examples
|
| 2 |
import streamlit as st
|
| 3 |
from session import _get_state
|
| 4 |
from multiapp import MultiApp
|
|
|
|
| 25 |
app.add_app("Article", article.app)
|
| 26 |
app.add_app("Visual Question Answering", vqa.app)
|
| 27 |
app.add_app("Mask Filling", mlm.app)
|
| 28 |
+
app.add_app("Examples", examples.app)
|
| 29 |
app.run()
|
| 30 |
state.sync()
|
| 31 |
|