# Load model directly
from transformers import AutoProcessor, AutoModelForTokenClassification
processor = AutoProcessor.from_pretrained("hf-tiny-model-private/tiny-random-MarkupLMForTokenClassification")
model = AutoModelForTokenClassification.from_pretrained("hf-tiny-model-private/tiny-random-MarkupLMForTokenClassification")Quick Links
No model card
- Downloads last month
- 9
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("token-classification", model="hf-tiny-model-private/tiny-random-MarkupLMForTokenClassification")