Spaces:
Running
Running
Bram Vanroy
commited on
Commit
β’
0e6dbbe
1
Parent(s):
05b9456
add description
Browse files
app.py
CHANGED
@@ -106,22 +106,25 @@ if submitted:
|
|
106 |
########################
|
107 |
# Information, socials #
|
108 |
########################
|
109 |
-
st.header("
|
110 |
|
111 |
st.markdown("""
|
112 |
<div style="display: flex">
|
113 |
<img style="margin-right: 1em" alt="SignON logo" src="https://signon-project.eu/wp-content/uploads/2021/05/SignOn_Favicon_500x500px.png" width=64 height=64>
|
114 |
<p><a href="https://signon-project.eu/" target="_blank" title="SignON homepage">SignON</a> aims to bridge the
|
115 |
-
communication gap between
|
116 |
translate between languages and modalities with particular attention to sign languages.</p>
|
117 |
-
</div>
|
118 |
-
|
119 |
-
representation)
|
120 |
-
|
|
|
|
|
|
|
121 |
|
122 |
|
123 |
st.header("Contact βοΈ")
|
124 |
|
125 |
-
st.markdown("Would you like additional functionality in the demo
|
126 |
" Give me a shout on [Twitter](https://twitter.com/BramVanroy)"
|
127 |
" or add me on [LinkedIn](https://www.linkedin.com/in/bramvanroy/)!")
|
|
|
106 |
########################
|
107 |
# Information, socials #
|
108 |
########################
|
109 |
+
st.header("SignON π€")
|
110 |
|
111 |
st.markdown("""
|
112 |
<div style="display: flex">
|
113 |
<img style="margin-right: 1em" alt="SignON logo" src="https://signon-project.eu/wp-content/uploads/2021/05/SignOn_Favicon_500x500px.png" width=64 height=64>
|
114 |
<p><a href="https://signon-project.eu/" target="_blank" title="SignON homepage">SignON</a> aims to bridge the
|
115 |
+
communication gap between deaf, hard-of-hearing and hearing people through an accessible translation service to
|
116 |
translate between languages and modalities with particular attention to sign languages.</p>
|
117 |
+
</div>""", unsafe_allow_html=True)
|
118 |
+
|
119 |
+
st.markdown("""[Abstract meaning representation](https://aclanthology.org/W13-2322/) (AMR)
|
120 |
+
is a semantic framework to describe meaning relations of sentences as graphs. In the SignON project, AMR is used as
|
121 |
+
an interlingua to translate between modalities and languages. To this end, I built MBART models for the task of
|
122 |
+
generating linearized AMR representations from an input sentence, which is show-cased in this demo.
|
123 |
+
""")
|
124 |
|
125 |
|
126 |
st.header("Contact βοΈ")
|
127 |
|
128 |
+
st.markdown("Would you like additional functionality in the demo, do you have questions, or just want to get in touch?"
|
129 |
" Give me a shout on [Twitter](https://twitter.com/BramVanroy)"
|
130 |
" or add me on [LinkedIn](https://www.linkedin.com/in/bramvanroy/)!")
|