End of training 46e5138 verified
Maksim Ploter commited on
How to use Max-Ploter/detr with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("object-detection", model="Max-Ploter/detr") # Load model directly
from transformers import AutoImageProcessor, AutoModelForObjectDetection
processor = AutoImageProcessor.from_pretrained("Max-Ploter/detr")
model = AutoModelForObjectDetection.from_pretrained("Max-Ploter/detr")