yolov10/README.md
Ayush Chaurasia c5cb76b356
Metrics and loss structure (#28)
Co-authored-by: Ayush Chaurasia <ayush.chuararsia@gmail.com>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: Glenn Jocher <glenn.jocher@ultralytics.com>
2022-10-15 19:39:05 +02:00

21 lines
469 B
Markdown

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