How to use from the
Use from the
Transformers library
# Use a pipeline as a high-level helper
from transformers import pipeline

pipe = pipeline("text-classification", model="vikp/column_detector")
# Load model directly
from transformers import AutoProcessor, AutoModelForSequenceClassification

processor = AutoProcessor.from_pretrained("vikp/column_detector")
model = AutoModelForSequenceClassification.from_pretrained("vikp/column_detector")
Quick Links

YAML Metadata Warning:empty or missing yaml metadata in repo card

Check out the documentation for more information.

Detects number of columns in pdf page images. Based on layoutlmv3.

Used in marker.

Downloads last month
10,596
Inference Providers NEW