Datasets:
Update README.md
Browse files
README.md
CHANGED
|
@@ -37,6 +37,26 @@ For every object in an image, a **bounding box** is provided, represented in the
|
|
| 37 |
|
| 38 |
This dataset is suitable for tasks such as **object detection**, and can be used to detect players in football game images or videos.
|
| 39 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 40 |
## References
|
| 41 |
|
| 42 |
The dataset comes from [Roboflow Universe](https://universe.roboflow.com/football-project-pifbc/football-players-detection-3zvbc-yyhdl), where you can also visualize the bounding boxes drawn around each object in the images.
|
|
|
|
| 37 |
|
| 38 |
This dataset is suitable for tasks such as **object detection**, and can be used to detect players in football game images or videos.
|
| 39 |
|
| 40 |
+
Detecting players can be challenging, as they are often close together, can partially occlude each other, and can be confused with referees.
|
| 41 |
+
|
| 42 |
+
|
| 43 |
+
## Usage
|
| 44 |
+
|
| 45 |
+
Download dataset in your current working directory ``cwd``:
|
| 46 |
+
```
|
| 47 |
+
hf download martinjolif/football-player-detection --repo-type dataset --local-dir cwd
|
| 48 |
+
```
|
| 49 |
+
|
| 50 |
+
Finetune on this dataset:
|
| 51 |
+
```
|
| 52 |
+
yolo detect train data=data/data.yaml model=yolo11n.pt epochs=1 batch=32 imgsz=640 device=mps
|
| 53 |
+
```
|
| 54 |
+
|
| 55 |
+
Validate custom-trained model:
|
| 56 |
+
```
|
| 57 |
+
yolo detect val model=path/to/best.pt
|
| 58 |
+
```
|
| 59 |
+
|
| 60 |
## References
|
| 61 |
|
| 62 |
The dataset comes from [Roboflow Universe](https://universe.roboflow.com/football-project-pifbc/football-players-detection-3zvbc-yyhdl), where you can also visualize the bounding boxes drawn around each object in the images.
|