Views
No views yet
>>pl<<, >>cs<<, >>ru<<) to the input, based on the language of the phrase you want to lemmatize.from transformers import pipeline
pipe = pipeline(task="text2text-generation", model="amu-cai/slavlemma-base", tokenizer="amu-cai/slavlemma-base")
hyp = [res['generated_text'] for res in pipe([">>pl<< federalnego urzędu statystycznego"], clean_up_tokenization_spaces=True, num_beams=5)][0]| Model | pl | cs | ru |
|---|---|---|---|
| slavlemma-large | 93.76 | 89.80 | 77.30 |
| slavlemma-base | 91.00 | 86.29 | 76.10 |
| slavlemma-small | 86.80 | 80.98 | 73.83 |
| Model | pl | cs | ru |
|---|---|---|---|
| slavlemma-large | 89.12 | 87.27 | 82.50 |
| slavlemma-base | 84.19 | 81.97 | 80.27 |
| slavlemma-small | 78.85 | 75.86 | 76.18 |
@inproceedings{palka-nowakowski-2023-exploring,
title = "Exploring the Use of Foundation Models for Named Entity Recognition and Lemmatization Tasks in {S}lavic Languages",
author = "Pa{\l}ka, Gabriela and
Nowakowski, Artur",
booktitle = "Proceedings of the 9th Workshop on Slavic Natural Language Processing 2023 (SlavicNLP 2023)",
month = may,
year = "2023",
address = "Dubrovnik, Croatia",
publisher = "Association for Computational Linguistics",
url = "https://aclanthology.org/2023.bsnlp-1.19",
pages = "165--171",
abstract = "This paper describes Adam Mickiewicz University{'}s (AMU) solution for the 4th Shared Task on SlavNER. The task involves the identification, categorization, and lemmatization of named entities in Slavic languages. Our approach involved exploring the use of foundation models for these tasks. In particular, we used models based on the popular BERT and T5 model architectures. Additionally, we used external datasets to further improve the quality of our models. Our solution obtained promising results, achieving high metrics scores in both tasks. We describe our approach and the results of our experiments in detail, showing that the method is effective for NER and lemmatization in Slavic languages. Additionally, our models for lemmatization will be available at: https://huggingface.co/amu-cai.",
}