Instructions to use dbmdz/bert-tiny-historic-multilingual-cased with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use dbmdz/bert-tiny-historic-multilingual-cased with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("fill-mask", model="dbmdz/bert-tiny-historic-multilingual-cased")# Load model directly from transformers import AutoTokenizer, AutoModelForMaskedLM tokenizer = AutoTokenizer.from_pretrained("dbmdz/bert-tiny-historic-multilingual-cased") model = AutoModelForMaskedLM.from_pretrained("dbmdz/bert-tiny-historic-multilingual-cased") - Notebooks
- Google Colab
- Kaggle
Add language tags
#1
by lbourdois - opened
README.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
| 1 |
---
|
| 2 |
-
language:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
license: mit
|
| 4 |
widget:
|
| 5 |
- text: "and I cannot conceive the reafon why [MASK] hath"
|
|
|
|
| 1 |
---
|
| 2 |
+
language:
|
| 3 |
+
- multilingual
|
| 4 |
+
- de
|
| 5 |
+
- fr
|
| 6 |
+
- en
|
| 7 |
+
- fi
|
| 8 |
+
- sv
|
| 9 |
license: mit
|
| 10 |
widget:
|
| 11 |
- text: "and I cannot conceive the reafon why [MASK] hath"
|