trituenhantaoio
commited on
Commit
•
780ee49
1
Parent(s):
8a3a019
Update Model Card
Browse files
README.md
CHANGED
@@ -1 +1,21 @@
|
|
1 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
## Usage
|
2 |
+
```python
|
3 |
+
from transformers import BertForSequenceClassification
|
4 |
+
from transformers import BertTokenizer
|
5 |
+
model = BertForSequenceClassification.from_pretrained("trituenhantaoio/bert-base-vietnamese-diacritics-uncased")
|
6 |
+
tokenizer = BertTokenizer.from_pretrained("trituenhantaoio/bert-base-vietnamese-diacritics-uncased")
|
7 |
+
```
|
8 |
+
|
9 |
+
### References
|
10 |
+
|
11 |
+
```
|
12 |
+
@article{ttnt2020bertdiacritics,
|
13 |
+
title={Vietnamese BERT Diacritics: Pretrained on News and Wiki},
|
14 |
+
author={trituenhantao.io},
|
15 |
+
year = {2020},
|
16 |
+
publisher = {Hugging Face},
|
17 |
+
journal = {Hugging Face repository}
|
18 |
+
}
|
19 |
+
```
|
20 |
+
|
21 |
+
[trituenhantao.io](https://trituenhantao.io)
|