File size: 977 Bytes
637ad85
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
---

license: mit
task_categories:
- object-detection
tags:
- yolo
- computer-vision
- pool
- billiards
size_categories:
- n<1K
---


# Pool Detection Dataset

This is a YOLO format dataset for object detection tasks.

## Dataset Structure

```

pool/

  train/

    images/

    labels/

  valid/

    images/

    labels/

  test/

    images/

    labels/

  data.yaml

```

## Classes

The dataset contains 16 classes representing pool balls (numbered 0-15).

## Usage

### In Python

```python

from datasets import load_dataset



dataset = load_dataset("nhantu2107/pool-detection")

```

### In Kaggle

1. Go to your Kaggle notebook
2. Click "Add data" -> "Hugging Face"
3. Search for "pool-detection"
4. Click "Add"

### With YOLOv8/YOLOv11

```python

from ultralytics import YOLO



model = YOLO('yolov8n.pt')

model.train(data='data.yaml', epochs=100)

```

## Citation

If you use this dataset, please cite appropriately.