Pretrained Model Aliases
Built-in COCO-pretrained model aliases you can run with Roboflow Inference without training a model.
Code sample
3
Run the model
import os
from inference_sdk import InferenceHTTPClient
client = InferenceHTTPClient(
api_url="https://serverless.roboflow.com",
api_key=os.environ["ROBOFLOW_API_KEY"],
)
results = client.infer(
"https://media.roboflow.com/inference/people-walking.jpg",
model_id="rfdetr-small",
)
print(results["predictions"])Available aliases
RF-DETR
Model
Input size
Task
Model ID
Test
YOLO26
Model
Input size
Task
Model ID
Test
YOLO11
Model
Input size
Task
Model ID
Test
YOLOv10
Model
Input size
Task
Model ID
Test
YOLOv8
Model
Input size
Task
Model ID
Test
YOLO-NAS
Model
Input size
Task
Model ID
Test
Related pages
Last updated
Was this helpful?