Views
No views yet
fatihburakkaragoz/ottoman-ner-latin)dbmdz/bert-base-turkish-cased using a custom CONLL-formatted dataset annotated specifically for Ottoman Latin script.ottoman-ner-latin) was developed independently, it builds upon the broader Ottoman-NLP research direction initiated within Boğaziçi University - BUCOLIN Lab under the guidance of Prof. Dr. Şaziye Betül Özateş.dbmdz/bert-base-turkish-cased1from transformers import AutoTokenizer, AutoModelForTokenClassification, pipeline
2
3model = AutoModelForTokenClassification.from_pretrained("fatihburakkaragoz/ottoman-ner-latin")
4tokenizer = AutoTokenizer.from_pretrained("fatihburakkaragoz/ottoman-ner-latin")
5
6ner_pipeline = pipeline("ner", model=model, tokenizer=tokenizer, aggregation_strategy="simple")
7
8text = "Emin Bey’in kuklaları bir haftadır Tepebaşı’nda oynuyor."
9entities = ner_pipeline(text)
10print(entities)[
{
"entity_group": "PER",
"word": "Emin Bey",
"start": 0,
"end": 8,
"score": 0.998
},
{
"entity_group": "LOC",
"word": "Tepebaşı",
"start": 34,
"end": 42,
"score": 0.997
}
]1@software{karagoz_ottoman_ner_latin_2025,
2 author = {Karagöz, Fatih Burak},
3 title = {Ottoman-NER Latin: A Named Entity Recognition Model for Transliterated Ottoman Turkish},
4 year = {2025},
5 publisher = {Hugging Face},
6 url = {https://huggingface.co/fatihburakkaragoz/ottoman-ner-latin},
7 note = {Model version 0.2.0. Developed as part of the Ottoman-NLP initiative.}
8}@article{ozates2025building,
title={Building Foundations for Natural Language Processing of Historical Turkish: Resources and Models},
author={Özateş, Şaziye Betül and Tıraş, Tuğba Eser and Adak, Elif Esra and Doğan, Berkay and Karagöz, Fatih Burak and Genç, Elif Esma and others},
journal={arXiv preprint arXiv:2501.04828},
year={2025}
}
@inproceedings{karagoz2024towards,
title={Towards a Clean Text Corpus for Ottoman Turkish},
author={Karagöz, Fatih Burak and Doğan, Berkay and Özateş, Şaziye Betül},
booktitle={Proceedings of the First Workshop on Natural Language Processing for Turkic Languages},
year={2024}
}