Instructions to use google-bert/bert-base-cased with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use google-bert/bert-base-cased with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("fill-mask", model="google-bert/bert-base-cased")# Load model directly from transformers import AutoTokenizer, AutoModelForMaskedLM tokenizer = AutoTokenizer.from_pretrained("google-bert/bert-base-cased") model = AutoModelForMaskedLM.from_pretrained("google-bert/bert-base-cased") - Inference
- Notebooks
- Google Colab
- Kaggle
Update README.md
#3
by egoing - opened
README.md
CHANGED
|
@@ -223,7 +223,7 @@ Glue test results:
|
|
| 223 |
biburl = {https://dblp.org/rec/journals/corr/abs-1810-04805.bib},
|
| 224 |
bibsource = {dblp computer science bibliography, https://dblp.org}
|
| 225 |
}
|
| 226 |
-
```
|
| 227 |
|
| 228 |
<a href="https://huggingface.co/exbert/?model=bert-base-cased">
|
| 229 |
<img width="300px" src="https://cdn-media.huggingface.co/exbert/button.png">
|
|
|
|
| 223 |
biburl = {https://dblp.org/rec/journals/corr/abs-1810-04805.bib},
|
| 224 |
bibsource = {dblp computer science bibliography, https://dblp.org}
|
| 225 |
}
|
| 226 |
+
```;
|
| 227 |
|
| 228 |
<a href="https://huggingface.co/exbert/?model=bert-base-cased">
|
| 229 |
<img width="300px" src="https://cdn-media.huggingface.co/exbert/button.png">
|