Spaces:
Paused
Paused
Commit
·
d284357
1
Parent(s):
07826f1
Update app.
Browse files
app.py
CHANGED
@@ -13,6 +13,10 @@ import aaac_util as aaac
|
|
13 |
from huggingface_hub.inference_api import InferenceApi
|
14 |
|
15 |
|
|
|
|
|
|
|
|
|
16 |
BOILER_PLATE = {
|
17 |
"Enter your story" : "",
|
18 |
"Enter question (optional)": "",
|
@@ -289,6 +293,7 @@ def main():
|
|
289 |
|
290 |
st.set_page_config(layout="wide")
|
291 |
st.title("DeepA2 ArgumentAnalyst Demo")
|
|
|
292 |
|
293 |
## page details
|
294 |
|
|
|
13 |
from huggingface_hub.inference_api import InferenceApi
|
14 |
|
15 |
|
16 |
+
INTRO_TEXT = """This app let's you explore ArgumentAnalyst, a system for
|
17 |
+
logical analysis and reconstruction of argumentative texts (DeepA2).
|
18 |
+
See also [Betz / Richardson 2021](https://arxiv.org/abs/2110.01509)."""
|
19 |
+
|
20 |
BOILER_PLATE = {
|
21 |
"Enter your story" : "",
|
22 |
"Enter question (optional)": "",
|
|
|
293 |
|
294 |
st.set_page_config(layout="wide")
|
295 |
st.title("DeepA2 ArgumentAnalyst Demo")
|
296 |
+
st.markdown(INTRO_TEXT, unsafe_allow_html=False)
|
297 |
|
298 |
## page details
|
299 |
|