Instructions to use Visar/roberta_oscar_al with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Visar/roberta_oscar_al with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("fill-mask", model="Visar/roberta_oscar_al")# Load model directly from transformers import AutoTokenizer, AutoModelForMaskedLM tokenizer = AutoTokenizer.from_pretrained("Visar/roberta_oscar_al") model = AutoModelForMaskedLM.from_pretrained("Visar/roberta_oscar_al") - Notebooks
- Google Colab
- Kaggle
Adding `safetensors` variant of this model
#1 opened over 1 year ago
by
SFconvertbot