Instructions to use monsoon-nlp/muril-adapted-local with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use monsoon-nlp/muril-adapted-local with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("fill-mask", model="monsoon-nlp/muril-adapted-local")# Load model directly from transformers import AutoTokenizer, AutoModelForMaskedLM tokenizer = AutoTokenizer.from_pretrained("monsoon-nlp/muril-adapted-local") model = AutoModelForMaskedLM.from_pretrained("monsoon-nlp/muril-adapted-local", device_map="auto") - Notebooks
- Google Colab
- Kaggle
Commit ·
c6fa1c8
1
Parent(s): 0552c3d
allow flax
Browse files- .gitattributes +1 -0
.gitattributes
CHANGED
|
@@ -1,2 +1,3 @@
|
|
| 1 |
pytorch_model.bin filter=lfs diff=lfs merge=lfs -text
|
| 2 |
tf_model.h5 filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
| 1 |
pytorch_model.bin filter=lfs diff=lfs merge=lfs -text
|
| 2 |
tf_model.h5 filter=lfs diff=lfs merge=lfs -text
|
| 3 |
+
*.msgpack filter=lfs diff=lfs merge=lfs -text
|