Training in progress, step 500 825c805
Abror Shopulatov commited on
How to use murodbek/uzroberta-panx-uz with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("token-classification", model="murodbek/uzroberta-panx-uz") # Load model directly
from transformers import AutoTokenizer, AutoModelForTokenClassification
tokenizer = AutoTokenizer.from_pretrained("murodbek/uzroberta-panx-uz")
model = AutoModelForTokenClassification.from_pretrained("murodbek/uzroberta-panx-uz")