Im am Unable to detect more than 300 objects using REST API

When trying to call my model from my applications using roboflow API (model.predict()), it seems there is no parameter max_det, max_detections or maximum_detections ton increase maximum detections.

Hi @Valentin_VIEUX ,

I guess you tried to run inference using roboflow python package.

Can you try to use inference package? It’s equally simple - you install it by running pip install inference (if you have CUDA then pip install inference-gpu), once installed you can run inference by simply:

from inference import get_model

model = get_model(model_id="your-model-id", api_key="your-api-key")

res = model.infer("/path/to/your/image.jpeg")

print(res)

If you prefer to make requests, you can make use of inference-sdk