Instructions to use FacebookAI/xlm-roberta-large with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use FacebookAI/xlm-roberta-large with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("fill-mask", model="FacebookAI/xlm-roberta-large")# Load model directly from transformers import AutoTokenizer, AutoModelForMaskedLM tokenizer = AutoTokenizer.from_pretrained("FacebookAI/xlm-roberta-large") model = AutoModelForMaskedLM.from_pretrained("FacebookAI/xlm-roberta-large") - Inference
- Notebooks
- Google Colab
- Kaggle
kindly tell me about FacebookAI/xlm-roberta-large GGUF Format
#18
by Jahanzaib006201 - opened
Hi,
I want to use this model locally in my machine so I need this model GGUF Format. If anyone know about it kindly tell me so that I can implement this model locally . Thank you
Click ''Use in Transformers'' button, this is the first step for an implementation of model for further fine-tuning
Hi @Jahanzaib006201
I am not sure if GGUF + bert / roberta are compatible, the closest resource I could find is: https://github.com/skeskinen/bert.cpp that seem to use GGML under the hood