gchhablani
commited on
Commit
•
aff0649
1
Parent(s):
180b65a
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 1900000 Checkpoint 1900k (uncased)
|
12 |
+
Seed 1900000 intermediate checkpoint 1900k 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-1900000-1900k")
|
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:adf43c0d85f14519525c77605361f25aa5aaf167707365e58a3b4841bf01ce88
|
3 |
+
size 440509027
|