Datasets:
Upload folder using huggingface_hub
Browse files- README.dataset.txt +6 -0
- README.md +69 -43
- README.roboflow.txt +27 -0
- data.yaml +23 -0
README.dataset.txt
ADDED
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# chess-piece-detection > 2025-06-10 2:02am
|
2 |
+
https://universe.roboflow.com/gustoguardian/chess-piece-detection-bltvi
|
3 |
+
|
4 |
+
Provided by a Roboflow user
|
5 |
+
License: CC BY 4.0
|
6 |
+
|
README.md
CHANGED
@@ -1,45 +1,71 @@
|
|
1 |
---
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
- name: x_center
|
13 |
-
dtype: float32
|
14 |
-
- name: y_center
|
15 |
-
dtype: float32
|
16 |
-
- name: width
|
17 |
-
dtype: float32
|
18 |
-
- name: height
|
19 |
-
dtype: float32
|
20 |
-
- name: image_width
|
21 |
-
dtype: int32
|
22 |
-
- name: image_height
|
23 |
-
dtype: int32
|
24 |
-
splits:
|
25 |
-
- name: train
|
26 |
-
num_bytes: 50948293.0
|
27 |
-
num_examples: 127
|
28 |
-
- name: valid
|
29 |
-
num_bytes: 12210046.0
|
30 |
-
num_examples: 27
|
31 |
-
- name: test
|
32 |
-
num_bytes: 5652054.0
|
33 |
-
num_examples: 8
|
34 |
-
download_size: 68830439
|
35 |
-
dataset_size: 68810393.0
|
36 |
-
configs:
|
37 |
-
- config_name: default
|
38 |
-
data_files:
|
39 |
-
- split: train
|
40 |
-
path: data/train-*
|
41 |
-
- split: valid
|
42 |
-
path: data/valid-*
|
43 |
-
- split: test
|
44 |
-
path: data/test-*
|
45 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
+
license: cc-by-4.0
|
3 |
+
task_categories:
|
4 |
+
- object-detection
|
5 |
+
tags:
|
6 |
+
- chess
|
7 |
+
- computer-vision
|
8 |
+
- yolo
|
9 |
+
- object-detection
|
10 |
+
size_categories:
|
11 |
+
- 1K<n<10K
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
12 |
---
|
13 |
+
|
14 |
+
# Chess Piece Detection Dataset: chess_pieces_dominique
|
15 |
+
|
16 |
+
## Dataset Description
|
17 |
+
|
18 |
+
This dataset contains chess piece detection annotations in YOLOv8 format.
|
19 |
+
|
20 |
+
Chess piece detection dataset from Dominique/Roboflow with 12 classes of chess pieces, optimized for YOLOv8 training.
|
21 |
+
|
22 |
+
## Dataset Structure
|
23 |
+
|
24 |
+
The dataset follows the YOLOv8 format with the following structure:
|
25 |
+
- `train/`: Training images and labels
|
26 |
+
- `valid/`: Validation images and labels
|
27 |
+
- `test/`: Test images and labels
|
28 |
+
|
29 |
+
## Classes
|
30 |
+
|
31 |
+
The dataset contains 12 classes of chess pieces:
|
32 |
+
|
33 |
+
0. black-bishop
|
34 |
+
1. black-king
|
35 |
+
2. black-knight
|
36 |
+
3. black-pawn
|
37 |
+
4. black-queen
|
38 |
+
5. black-rook
|
39 |
+
6. white-bishop
|
40 |
+
7. white-king
|
41 |
+
8. white-knight
|
42 |
+
9. white-pawn
|
43 |
+
10. white-queen
|
44 |
+
11. white-rook
|
45 |
+
|
46 |
+
## Usage
|
47 |
+
|
48 |
+
```python
|
49 |
+
from datasets import load_dataset
|
50 |
+
|
51 |
+
# Load the dataset
|
52 |
+
dataset = load_dataset("dopaul/chess_pieces_dominique")
|
53 |
+
|
54 |
+
# Access different splits
|
55 |
+
train_data = dataset["train"]
|
56 |
+
valid_data = dataset["valid"]
|
57 |
+
test_data = dataset["test"]
|
58 |
+
|
59 |
+
# Example: Access first training image and annotations
|
60 |
+
example = train_data[0]
|
61 |
+
image = example["image"]
|
62 |
+
annotations = example["annotations"]
|
63 |
+
```
|
64 |
+
|
65 |
+
## Citation
|
66 |
+
|
67 |
+
If you use this dataset, please consider citing the original sources and this repository.
|
68 |
+
|
69 |
+
## License
|
70 |
+
|
71 |
+
This dataset is released under the CC BY 4.0 license.
|
README.roboflow.txt
ADDED
@@ -0,0 +1,27 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
|
2 |
+
chess-piece-detection - v6 2025-06-10 2:02am
|
3 |
+
==============================
|
4 |
+
|
5 |
+
This dataset was exported via roboflow.com on June 10, 2025 at 9:17 AM GMT
|
6 |
+
|
7 |
+
Roboflow is an end-to-end computer vision platform that helps you
|
8 |
+
* collaborate with your team on computer vision projects
|
9 |
+
* collect & organize images
|
10 |
+
* understand and search unstructured image data
|
11 |
+
* annotate, and create datasets
|
12 |
+
* export, train, and deploy computer vision models
|
13 |
+
* use active learning to improve your dataset over time
|
14 |
+
|
15 |
+
For state of the art Computer Vision training notebooks you can use with this dataset,
|
16 |
+
visit https://github.com/roboflow/notebooks
|
17 |
+
|
18 |
+
To find over 100k other datasets and pre-trained models, visit https://universe.roboflow.com
|
19 |
+
|
20 |
+
The dataset includes 162 images.
|
21 |
+
Black-bishop are annotated in YOLOv8 format.
|
22 |
+
|
23 |
+
The following pre-processing was applied to each image:
|
24 |
+
|
25 |
+
No image augmentation techniques were applied.
|
26 |
+
|
27 |
+
|
data.yaml
ADDED
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
names:
|
2 |
+
- black-bishop
|
3 |
+
- black-king
|
4 |
+
- black-knight
|
5 |
+
- black-pawn
|
6 |
+
- black-queen
|
7 |
+
- black-rook
|
8 |
+
- white-bishop
|
9 |
+
- white-king
|
10 |
+
- white-knight
|
11 |
+
- white-pawn
|
12 |
+
- white-queen
|
13 |
+
- white-rook
|
14 |
+
nc: 12
|
15 |
+
roboflow:
|
16 |
+
license: CC BY 4.0
|
17 |
+
project: chess-piece-detection-bltvi
|
18 |
+
url: https://universe.roboflow.com/gustoguardian/chess-piece-detection-bltvi/dataset/6
|
19 |
+
version: 6
|
20 |
+
workspace: gustoguardian
|
21 |
+
test: ../test/images
|
22 |
+
train: ../train/images
|
23 |
+
val: ../valid/images
|