colinswaelens commited on
Commit
3732738
·
1 Parent(s): bc28289

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +39 -0
README.md ADDED
@@ -0,0 +1,39 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ datasets:
4
+ - colinswaelens/DBBErt
5
+ language:
6
+ - el
7
+ metrics:
8
+ - accuracy
9
+ - f1
10
+ - recall
11
+ - precision
12
+ pipeline_tag: token-classification
13
+ ---
14
+
15
+ ## DBBErt
16
+ Our DBBErt model is a sub-word BERT model developed mainly for Byzantine but also Ancient Greek.
17
+ It is the only model that is not only trained on Ancient and Modern Greek data but also on unedited Byzantine data.
18
+
19
+ Fine-tuned on Part-of-Speech tagging and Morphological Analysis.
20
+
21
+ Pre-trained weights are made available for a standard 12 layer, 768d BERT model.
22
+
23
+
24
+ ## How to use
25
+ Requirements:
26
+ ```
27
+ pip install transformers
28
+ pip install flair
29
+ ```
30
+
31
+ Can be directly used from the HuggingFace Model Hub with:
32
+ ```
33
+ from transformers import AutoTokenizer, AutoModel
34
+ tokeniser = AutoTokenizer.from_pretrained("colinswaelens/DBBErt")
35
+ model = AutoModel.from_pretrained("colinswaelens/DBBErt")
36
+
37
+ ```
38
+
39
+ ## WIP