Bram Vanroy commited on
Commit
0e6dbbe
β€’
1 Parent(s): 05b9456

add description

Browse files
Files changed (1) hide show
  1. app.py +10 -7
app.py CHANGED
@@ -106,22 +106,25 @@ if submitted:
106
  ########################
107
  # Information, socials #
108
  ########################
109
- st.header("Project: 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>
118
- <p>This space and the accompanying models and public code are part of the SignON-project. AMR (abstract meaning
119
- representation) is used as an interlingua to translate between modalities and languages.</p>
120
- """, unsafe_allow_html=True)
 
 
 
121
 
122
 
123
  st.header("Contact βœ’οΈ")
124
 
125
- st.markdown("Would you like additional functionality in the demo? Or just want to get in touch?"
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/)!")