Instructions to use UGARIT/grc-ner-bert with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use UGARIT/grc-ner-bert with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("token-classification", model="UGARIT/grc-ner-bert")# Load model directly from transformers import AutoTokenizer, AutoModelForTokenClassification tokenizer = AutoTokenizer.from_pretrained("UGARIT/grc-ner-bert") model = AutoModelForTokenClassification.from_pretrained("UGARIT/grc-ner-bert") - Inference
- Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -100,12 +100,19 @@ Output
|
|
| 100 |
|
| 101 |
# Citation:
|
| 102 |
```
|
| 103 |
-
@
|
| 104 |
-
|
| 105 |
-
|
| 106 |
-
|
| 107 |
-
|
| 108 |
-
|
| 109 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 110 |
}
|
| 111 |
```
|
|
|
|
| 100 |
|
| 101 |
# Citation:
|
| 102 |
```
|
| 103 |
+
@inproceedings{palladino-yousef-2024-development,
|
| 104 |
+
title = "Development of Robust {NER} Models and Named Entity Tagsets for {A}ncient {G}reek",
|
| 105 |
+
author = "Palladino, Chiara and
|
| 106 |
+
Yousef, Tariq",
|
| 107 |
+
editor = "Sprugnoli, Rachele and
|
| 108 |
+
Passarotti, Marco",
|
| 109 |
+
booktitle = "Proceedings of the Third Workshop on Language Technologies for Historical and Ancient Languages (LT4HALA) @ LREC-COLING-2024",
|
| 110 |
+
month = may,
|
| 111 |
+
year = "2024",
|
| 112 |
+
address = "Torino, Italia",
|
| 113 |
+
publisher = "ELRA and ICCL",
|
| 114 |
+
url = "https://aclanthology.org/2024.lt4hala-1.11",
|
| 115 |
+
pages = "89--97",
|
| 116 |
+
abstract = "This contribution presents a novel approach to the development and evaluation of transformer-based models for Named Entity Recognition and Classification in Ancient Greek texts. We trained two models with annotated datasets by consolidating potentially ambiguous entity types under a harmonized set of classes. Then, we tested their performance with out-of-domain texts, reproducing a real-world use case. Both models performed very well under these conditions, with the multilingual model being slightly superior on the monolingual one. In the conclusion, we emphasize current limitations due to the scarcity of high-quality annotated corpora and to the lack of cohesive annotation strategies for ancient languages.",
|
| 117 |
}
|
| 118 |
```
|