MT-fallen-firebrand-113 ad7dfe0
Amine commited on
How to use AmineAllo/MT-fallen-firebrand-113 with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("object-detection", model="AmineAllo/MT-fallen-firebrand-113") # Load model directly
from transformers import AutoImageProcessor, AutoModelForObjectDetection
processor = AutoImageProcessor.from_pretrained("AmineAllo/MT-fallen-firebrand-113")
model = AutoModelForObjectDetection.from_pretrained("AmineAllo/MT-fallen-firebrand-113", device_map="auto")