|
|
@ -1,12 +1,18 @@
|
|
|
|
[![Ultralytics CI](https://github.com/ultralytics/ultralytics/actions/workflows/ci.yaml/badge.svg)](https://github.com/ultralytics/ultralytics/actions/workflows/ci.yaml)
|
|
|
|
[![Ultralytics CI](https://github.com/ultralytics/ultralytics/actions/workflows/ci.yaml/badge.svg)](https://github.com/ultralytics/ultralytics/actions/workflows/ci.yaml)
|
|
|
|
|
|
|
|
|
|
|
|
### Usage
|
|
|
|
### Install
|
|
|
|
|
|
|
|
|
|
|
|
```bash
|
|
|
|
```bash
|
|
|
|
|
|
|
|
git clone https://github.com/ultralytics/ultralytics
|
|
|
|
|
|
|
|
cd ultralytics
|
|
|
|
python -m pip install --upgrade pip wheel
|
|
|
|
python -m pip install --upgrade pip wheel
|
|
|
|
python -m pip install . # (dev)
|
|
|
|
pip install . # (dev)
|
|
|
|
# pip install ultralytics (production)
|
|
|
|
# pip install ultralytics (production)
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### Usage
|
|
|
|
|
|
|
|
```python
|
|
|
|
import ultralytics
|
|
|
|
import ultralytics
|
|
|
|
from ultralytics import HUB, YOLO
|
|
|
|
from ultralytics import HUB, YOLO
|
|
|
|
|
|
|
|
|
|
|
|