Spaces:
Running
Running
File size: 1,269 Bytes
3aa7322 615deca 87fe8ad 615deca 3aa7322 615deca 3aa7322 615deca 3aa7322 615deca 3aa7322 615deca 87fe8ad 013d441 5e0ee08 517f421 82a7ed3 fe2f397 615deca 3aa7322 | 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 | import streamlit as st
st.set_page_config(
page_title="LatinCy Dashboard | Home",
page_icon="🏠",
)
st.write("# LatinCy Dashboard")
st.sidebar.success("Select a demo above.")
st.markdown(
"""
LatinCy is a collection of Latin language models for spaCy.
### See the demos
- [Get basic spaCy data from a short text](parsing_demo)
- [Visualize a custom span label](custom_label_demo), here tokens covered by the [DCC Core Latin Vocabulary](https://dcc.dickinson.edu/latin-core-list1)
- [Segment a paragraph into sentences](senter_demo)
- [Highlight named entities](ner_demo) (people, places, groups) in Latin text
- [Visualize dependency trees](dependency_demo) showing grammatical structure
- [Explore word similarity](similarity_demo) using Latin word vectors
- [Analyze morphology](morphology_demo) — lemma, case, gender, tense, and more
- [Normalize U/V spelling](uv_normalizer_demo) with rule-based [latincy-uv](https://github.com/diyclassics/latincy-uv)
- [Correct long-s OCR artifacts](long_s_demo) with [latincy-long-s](https://github.com/diyclassics/latincy-long-s)
- [Restore Greek diacritics](diacritics_demo) with [latincy-diacritics](https://github.com/diyclassics/latincy-diacritics)
"""
)
|