Instructions to use akumar33/ManuBERT with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use akumar33/ManuBERT with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("fill-mask", model="akumar33/ManuBERT")# Load model directly from transformers import AutoTokenizer, AutoModelForMaskedLM tokenizer = AutoTokenizer.from_pretrained("akumar33/ManuBERT") model = AutoModelForMaskedLM.from_pretrained("akumar33/ManuBERT") - Notebooks
- Google Colab
- Kaggle
Update config.json
Browse files- config.json +1 -1
config.json
CHANGED
|
@@ -22,5 +22,5 @@
|
|
| 22 |
"transformers_version": "4.13.0.dev0",
|
| 23 |
"type_vocab_size": 2,
|
| 24 |
"use_cache": true,
|
| 25 |
-
"vocab_size":
|
| 26 |
}
|
|
|
|
| 22 |
"transformers_version": "4.13.0.dev0",
|
| 23 |
"type_vocab_size": 2,
|
| 24 |
"use_cache": true,
|
| 25 |
+
"vocab_size": 31090
|
| 26 |
}
|