LSP-DETR
41
4
license:apache-2.0
by
RationAI
Image Model
OTHER
New
41 downloads
Early-stage
Edge AI:
Mobile
Laptop
Server
Unknown
Mobile
Laptop
Server
Quick Summary
AI model with specialized capabilities.
Code Examples
pythontransformers
from transformers import AutoModelForObjectDetection, AutoImageProcessor
processor = AutoImageProcessor.from_pretrained(
"RationAI/LSP-DETR", trust_remote_code=True
)
model = AutoModelForObjectDetection.from_pretrained(
"RationAI/LSP-DETR", trust_remote_code=True
)
inputs = processor(img, device=device, return_tensors="pt")
outputs = model(**inputs)
results = processor.post_process(outputs)
results = processor.post_process_instance(
results, height=img.size[1], width=img.size[0]
)Deploy This Model
Production-ready deployment in minutes
Together.ai
Instant API access to this model
Production-ready inference API. Start free, scale to millions.
Try Free APIReplicate
One-click model deployment
Run models in the cloud with simple API. No DevOps required.
Deploy NowDisclosure: We may earn a commission from these partners. This helps keep LLMYourWay free.