Zero-Shot Cross-Lingual POS Tagging for Filipino
Collection
Collection of models involve: XLM-R and RoBERTa Monolingual and Combination (Top 2 to 5)https://aclanthology.org/2024.fieldmatters-1.9/ • 30 items • Updated • 1
How to use iceman2434/roberta-tagalog-base-ft-udpos213-gv with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("token-classification", model="iceman2434/roberta-tagalog-base-ft-udpos213-gv") # Load model directly
from transformers import AutoTokenizer, AutoModelForTokenClassification
tokenizer = AutoTokenizer.from_pretrained("iceman2434/roberta-tagalog-base-ft-udpos213-gv")
model = AutoModelForTokenClassification.from_pretrained("iceman2434/roberta-tagalog-base-ft-udpos213-gv", device_map="auto")