Spaces:
Sleeping
Sleeping
File size: 1,640 Bytes
b614df0 d308fea b614df0 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 |
import streamlit as st
def write():
st.markdown(
"""
<h1 style="text-align:left;">Hamshetsnag POS Tagger</h1>
""",
unsafe_allow_html=True,
)
st.write("#")
col = st.columns(2)
# Include an image/logo for branding
col[0].image("images/cauldron.jpg", width=150)
st.markdown(
"""
<h3 style="text-align:left;">A POS Tagging Tool for the Hamshetsnag Language</h3>
""", unsafe_allow_html=True,
)
st.markdown(
"""
**Features:**
- Tags parts of speech in Hamshetsnag (Hemşince) text.
- Utilizes a fine-tuned model specifically with Multilingual BERT.
- Dataset: Sequential fine-tuning with Western Armenian and Eastern Armenian UD sentences and our Hamshetsnag corpus.
- Configurable parameters for customizing tagging behavior.
Refer to the [paper](http://kelesonur.github.io/folder/hms_abstract.pdf) for more details.
### Citation:
```bibtex
@inproceedings{keles2024hamshetsnag,
title={Transfer Learning to the Rescue! Cross-Lingual Transfer for POS Tagging in an Endangered Language: Hamshetsnag},
author={Onur Keleş and Baran Günay},
booktitle={Turkey Computational Social Science Conference},
year={2024},
address={Koç University: Istanbul, Turkey}
}
```
"""
)
st.markdown(
"""
<p style="text-align:right;"><em>Please use this tool responsibly and double-check all outputs.</em></p>
""",
unsafe_allow_html=True,
) |