Mark7549 commited on
Commit
22f86a8
·
1 Parent(s): dde99f4

updated the about page

Browse files
Files changed (1) hide show
  1. app.py +34 -1
app.py CHANGED
@@ -365,7 +365,40 @@ if selected == "App":
365
  if selected == "About":
366
  st.markdown("""
367
  ## About
368
- Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam nec purus nec nunc ultricies ultricies.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
369
  """)
370
 
371
 
 
365
  if selected == "About":
366
  st.markdown("""
367
  ## About
368
+ Welcome to AGALMA | ἄγαλμα, the Ancient Greek Accessible Language Models for linguistic Analysis!
369
+
370
+ This interface was developed in the framework of Silvia Stopponi’s PhD project, \
371
+ supervised by Saskia Peels-Matthey and Malvina Nissim at the University of Groningen (The Netherlands). \
372
+ The aim of this tool is to make language models trained on Ancient Greek available to all interested people, respectless of their coding skills. \
373
+
374
+ The following people were involved in the creation of this interface:
375
+
376
+ **Mark den Ouden**
377
+
378
+ **Silvia Stopponi** trained the models, defined the structure of the interface, and wrote the textual content.
379
+
380
+ **Saskia Peels-Matthey** supervised the project and revised the structure of the interface and the textual content.
381
+
382
+ **Malvina Nissim** supervised the project.
383
+
384
+ **Anchoring Innovation** financially supported the creation of this interface. \
385
+ Anchoring Innovation is the Gravitation Grant research agenda of the Dutch National Research School in Classical Studies, OIKOS. \
386
+ It is financially supported by the Dutch ministry of Education, Culture and Science (NWO project number 024.003.012).
387
+
388
+ <div style="text-align: center; font-weight: bold;">How to cite</div>
389
+
390
+ If you use this interface for your research, please cite it as:
391
+
392
+ Stopponi, Silvia, Mark den Ouden, Saskia Peels-Matthey & Malvina Nissim. 2024. \
393
+ <span style="font-style: italic;">AGALMA: Ancient Greek Accessible Language Models for linguistic Analysis.</span>
394
+
395
+ """, unsafe_allow_html=True)
396
+
397
+ if selected == "License":
398
+ st.markdown("""
399
+ ## License
400
+ The cosine similarity, nearest neighbours, and 3D representation data are licensed under a CC BY License.
401
+
402
  """)
403
 
404