Gal POS
Collection
4 items • Updated
How to use homersimpson/gal-pos-pt with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("token-classification", model="homersimpson/gal-pos-pt") # Load model directly
from transformers import AutoTokenizer, AutoModelForTokenClassification
tokenizer = AutoTokenizer.from_pretrained("homersimpson/gal-pos-pt")
model = AutoModelForTokenClassification.from_pretrained("homersimpson/gal-pos-pt")No model card