End of training 2dbcd6b verified
McCallum commited on
How to use ITOCJ/allminidatamarker with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("token-classification", model="ITOCJ/allminidatamarker") # Load model directly
from transformers import AutoTokenizer, AutoModelForTokenClassification
tokenizer = AutoTokenizer.from_pretrained("ITOCJ/allminidatamarker")
model = AutoModelForTokenClassification.from_pretrained("ITOCJ/allminidatamarker", device_map="auto")