Commit
·
2e77443
1
Parent(s):
41eae85
Add model
Browse files- README.md +3 -3
- pytorch_model.bin +3 -0
README.md
CHANGED
|
@@ -8,8 +8,8 @@ datasets:
|
|
| 8 |
- bookcorpus
|
| 9 |
- wikipedia
|
| 10 |
---
|
| 11 |
-
# MultiBERTs Seed
|
| 12 |
-
Seed
|
| 13 |
[this paper](https://arxiv.org/pdf/2106.16163.pdf) and first released in
|
| 14 |
[this repository](https://github.com/google-research/language/tree/master/language/multiberts). This model is uncased: it does not make a difference
|
| 15 |
between english and English.
|
|
@@ -46,7 +46,7 @@ Here is how to use this model to get the features of a given text in PyTorch:
|
|
| 46 |
```python
|
| 47 |
from transformers import BertTokenizer, BertModel
|
| 48 |
tokenizer = BertTokenizer.from_pretrained('bert-base-uncased')
|
| 49 |
-
model = BertModel.from_pretrained("multiberts-seed-
|
| 50 |
text = "Replace me by any text you'd like."
|
| 51 |
encoded_input = tokenizer(text, return_tensors='pt')
|
| 52 |
output = model(**encoded_input)
|
|
|
|
| 8 |
- bookcorpus
|
| 9 |
- wikipedia
|
| 10 |
---
|
| 11 |
+
# MultiBERTs Seed 1100000 Checkpoint 1100k (uncased)
|
| 12 |
+
Seed 1100000 intermediate checkpoint 1100k MultiBERTs (pretrained BERT) model on English language using a masked language modeling (MLM) objective. It was introduced in
|
| 13 |
[this paper](https://arxiv.org/pdf/2106.16163.pdf) and first released in
|
| 14 |
[this repository](https://github.com/google-research/language/tree/master/language/multiberts). This model is uncased: it does not make a difference
|
| 15 |
between english and English.
|
|
|
|
| 46 |
```python
|
| 47 |
from transformers import BertTokenizer, BertModel
|
| 48 |
tokenizer = BertTokenizer.from_pretrained('bert-base-uncased')
|
| 49 |
+
model = BertModel.from_pretrained("multiberts-seed-1100000-1100k")
|
| 50 |
text = "Replace me by any text you'd like."
|
| 51 |
encoded_input = tokenizer(text, return_tensors='pt')
|
| 52 |
output = model(**encoded_input)
|
pytorch_model.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:cdc9e1404469ae601ea55ed58486f09fa67b7b8481ea1d84559fe88d9450b638
|
| 3 |
+
size 440509027
|