Instructions to use raduion/bert-medium-luxembourgish with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use raduion/bert-medium-luxembourgish with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("fill-mask", model="raduion/bert-medium-luxembourgish")# Load model directly from transformers import AutoTokenizer, AutoModelForMaskedLM tokenizer = AutoTokenizer.from_pretrained("raduion/bert-medium-luxembourgish") model = AutoModelForMaskedLM.from_pretrained("raduion/bert-medium-luxembourgish", device_map="auto") - Notebooks
- Google Colab
- Kaggle
Create README.md
Browse files
README.md
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
## BERT Medium for Luxembourgish
|
| 2 |
+
|
| 3 |
+
Created from a dataset with 1M Luxembourgish sentences from Wikipedia. Corpus has approx. 16M words.
|
| 4 |
+
MLM objective was trained.
|
| 5 |
+
The BERT model has parameters `L=8` and `H=512`.
|
| 6 |
+
Vocabulary has 70K word pieces.
|