Transformers How to use huynhtin/ViCLSR with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("feature-extraction", model="huynhtin/ViCLSR") # Load model directly
from transformers import AutoTokenizer, XLMRobertaForCL
tokenizer = AutoTokenizer.from_pretrained("huynhtin/ViCLSR")
model = XLMRobertaForCL.from_pretrained("huynhtin/ViCLSR")