How to use from the
Use from the
Transformers library
# Use a pipeline as a high-level helper
from transformers import pipeline

pipe = pipeline("fill-mask", model="AIDA-UPM/BERTuit-base")
# Load model directly
from transformers import TFAutoModel
model = TFAutoModel.from_pretrained("AIDA-UPM/BERTuit-base", dtype="auto")
Quick Links

Model BERTuit as presented in the BERTuit: Understanding Spanish language in Twitter through a native transformer article.

Before tokenization replace user tags and urls with "<usr>" and "<url>" respectively.

Tokenize text with base class RoBERTaTokenizer.

Downloads last month
9
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Paper for AIDA-UPM/BERTuit-base