poltextlab commited on
Commit
2459b39
1 Parent(s): 959d830

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +43 -0
README.md CHANGED
@@ -1,3 +1,46 @@
1
  ---
2
  license: apache-2.0
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: apache-2.0
3
  ---
4
+
5
+ ## Model description
6
+
7
+ Cased fine-tuned BERT model for Hungarian, trained on a dataset...
8
+
9
+ ## Intended uses & limitations
10
+
11
+ The model can be used as any other (cased) BERT model. It has been tested recognizing ..., where:
12
+ *
13
+ *
14
+
15
+ ## Training
16
+
17
+ Fine-tuned version of the original huBERT model (`SZTAKI-HLT/hubert-base-cc`), trained on ...
18
+
19
+ ## Eval results
20
+
21
+ | Class | Precision | Recall | F-Score |
22
+ |-----|------------|------------|------|
23
+ | **Accessible / Label_0** | **0.71** | **0.79** | **0.75**|
24
+ | **Original / Label_1** | **0.76** | **0.67** | **0.71**|
25
+ | **accuracy** | | | **0.73**|
26
+ | **macro avg** | **0.74** | **0.73** | **0.73**|
27
+ | **weighted avg** | **0.74** | **0.73** | **0.73**|
28
+
29
+ ## Usage
30
+
31
+ ```py
32
+ from transformers import AutoTokenizer, AutoModelForSequenceClassification
33
+
34
+ tokenizer = AutoTokenizer.from_pretrained("")
35
+ model = AutoModelForSequenceClassification.from_pretrained("")
36
+ ```
37
+
38
+ ### BibTeX entry and citation info
39
+
40
+ If you use the model, please cite the following paper:
41
+
42
+ Bibtex:
43
+ ```bibtex
44
+ @{
45
+ }
46
+ ```