Instructions to use coastalcph/fairlex-ecthr-minilm with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use coastalcph/fairlex-ecthr-minilm with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("fill-mask", model="coastalcph/fairlex-ecthr-minilm")# Load model directly from transformers import AutoTokenizer, AutoModelForMaskedLM tokenizer = AutoTokenizer.from_pretrained("coastalcph/fairlex-ecthr-minilm") model = AutoModelForMaskedLM.from_pretrained("coastalcph/fairlex-ecthr-minilm") - Notebooks
- Google Colab
- Kaggle
Corrected tiny typo in loading the model
#1
by ypanagis - opened
Fixed a tiny typo at the section Load Pretrained Model
Thanks Yiannis!
kiddothe2b changed pull request status to merged