Add model card
Browse files
README.md
ADDED
@@ -0,0 +1,43 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
language:
|
3 |
+
- ne
|
4 |
+
thumbnail:
|
5 |
+
tags:
|
6 |
+
- roberta
|
7 |
+
- nepali-laguage-model
|
8 |
+
license: MIT
|
9 |
+
datasets:
|
10 |
+
- cc100
|
11 |
+
---
|
12 |
+
|
13 |
+
# nepbert
|
14 |
+
|
15 |
+
## Model description
|
16 |
+
|
17 |
+
Roberta trained from scratch on the Nepali CC-100 dataset with 12 million sentences.
|
18 |
+
|
19 |
+
## Intended uses & limitations
|
20 |
+
|
21 |
+
#### How to use
|
22 |
+
|
23 |
+
```python
|
24 |
+
from transformers import pipeline
|
25 |
+
|
26 |
+
pipe = pipeline(
|
27 |
+
"fill-mask",
|
28 |
+
model="amitness/nepbert",
|
29 |
+
tokenizer="amitness/nepbert"
|
30 |
+
)
|
31 |
+
print(pipe(u"कस्तो <mask> छ।"))
|
32 |
+
```
|
33 |
+
|
34 |
+
#### Limitations and bias
|
35 |
+
|
36 |
+
Provide examples of latent issues and potential remediations.
|
37 |
+
|
38 |
+
## Training data
|
39 |
+
|
40 |
+
The data was taken from the nepali language subset of CC-100 dataset.
|
41 |
+
|
42 |
+
## Training procedure
|
43 |
+
The model was trained on Google Colab using `1x Tesla V100`.
|