How to use vikp/column_detector with Transformers:
# 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")