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