working version of `inference_example.py`
This commit is contained in:
parent
69894c82af
commit
8bab49157d
|
|
@ -17,8 +17,11 @@ supervision package for multiple tasks such as tracking, annotations, etc.
|
|||
|
||||
- setup python environment and activate it [optional]
|
||||
|
||||
> [!NOTE]
|
||||
> YOLO-NAS is compatible with Python versions up to and including Python 3.10.
|
||||
|
||||
```bash
|
||||
python3 -m venv venv
|
||||
python3.10 -m venv venv
|
||||
source venv/bin/activate
|
||||
```
|
||||
|
||||
|
|
|
|||
|
|
@ -45,7 +45,7 @@ def parse_arguments() -> argparse.Namespace:
|
|||
)
|
||||
parser.add_argument(
|
||||
"--model_id",
|
||||
default="yolov8x-1280",
|
||||
default="yolov8x-640",
|
||||
help="Roboflow model ID",
|
||||
type=str,
|
||||
)
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
gdown
|
||||
supervision
|
||||
supervision==0.18.0rc1
|
||||
|
||||
ultralytics
|
||||
super-gradients
|
||||
|
|
|
|||
Loading…
Reference in New Issue