Docs Solutions to Navigation Bar (#13249)

Signed-off-by: Glenn Jocher <glenn.jocher@ultralytics.com>
Co-authored-by: Muhammad Rizwan Munawar <muhammadrizwanmunawar123@gmail.com>
Co-authored-by: UltralyticsAssistant <web@ultralytics.com>
Co-authored-by: Richard Abrich <richard.abrich@gmail.com>
This commit is contained in:
Glenn Jocher 2024-05-30 22:07:03 +02:00 committed by GitHub
parent 25e7054a9c
commit cbcb494cfc
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 128 additions and 82 deletions

View file

@ -69,13 +69,13 @@ curl -X POST "https://api.ultralytics.com/v1/predict/MODEL_ID" \
See the table below for a full list of available inference arguments.
| Argument | Default | Type | Description |
|--------------|---------|---------|----------------------------------------|
| `image` | | `image` | image file |
| `url` | | `str` | URL of the image if not passing a file |
| `size` | `640` | `int` | valid range `32` - `1280` pixels |
| `confidence` | `0.25` | `float` | valid range `0.01` - `1.0` |
| `iou` | `0.45` | `float` | valid range `0.0` - `0.95` |
| Argument | Default | Type | Description |
|--------------|---------|---------|----------------------------------------------------------------------|
| `image` | | `image` | Image file to be used for inference. |
| `url` | | `str` | URL of the image if not passing a file. |
| `size` | `640` | `int` | Size of the input image, valid range is `32` - `1280` pixels. |
| `confidence` | `0.25` | `float` | Confidence threshold for predictions, valid range `0.01` - `1.0`. |
| `iou` | `0.45` | `float` | Intersection over Union (IoU) threshold, valid range `0.0` - `0.95`. |
## Response