Inference Library
Run models directly in your own Python process with the inference package, with no server and no HTTP hop.
Install
pip install inferencepip install --extra-index-url https://download.pytorch.org/whl/cu124 inference-gpupip install inference-models[trt10]Run a model
from inference import get_model
image = "https://media.roboflow.com/inference/people-walking.jpg"
model = get_model(model_id="rfdetr-small")
results = model.infer(image)Visualize results
Video and Workflows
Going further
Last updated
Was this helpful?