Datasets:
Update dataset (CC-BY-4.0)
Browse filesThis view is limited to 50 files because it contains too many changes. See raw diff
- LICENSE +1 -0
- README.md +39 -3
- dataset.parquet +3 -0
- real/images/top-camera01.jpg +3 -0
- real/images/top-camera02.jpg +3 -0
- real/images/top-camera03.jpg +3 -0
- real/images/top-camera04.jpg +3 -0
- real/images/top-camera05.jpg +3 -0
- real/images/top-camera06.jpg +3 -0
- real/images/top-camera07.jpg +3 -0
- real/images/top-camera08.jpg +3 -0
- real/images/top-camera09.jpg +3 -0
- real/images/top-camera10.jpg +3 -0
- real/images/top-camera11.jpg +3 -0
- real/images/top-camera12.jpg +3 -0
- real/images/top-camera13.jpg +3 -0
- real/images/top-camera14.jpg +3 -0
- real/images/top-camera15.jpg +3 -0
- real/images/top-camera16.jpg +3 -0
- real/images/top-camera17.jpg +3 -0
- real/images/top-camera18.jpg +3 -0
- real/images/top-camera19.jpg +3 -0
- real/images/top-camera20.jpg +3 -0
- real/images/top-camera21.jpg +3 -0
- real/images/top-camera22.jpg +3 -0
- real/images/top-camera23.jpg +3 -0
- real/images/top-camera24.jpg +3 -0
- real/images/top-camera25.jpg +3 -0
- real/images/top-camera26.jpg +3 -0
- real/images/top-camera27.jpg +3 -0
- real/images/top-camera28.jpg +3 -0
- real/images/top-camera29.jpg +3 -0
- real/images/top-camera30.jpg +3 -0
- real/images/top-camera31.jpg +3 -0
- real/images/top-camera32.jpg +3 -0
- real/images/top-camera33.jpg +3 -0
- real/images/top-camera34.jpg +3 -0
- real/images/top-camera35.jpg +3 -0
- real/images/top-camera36.jpg +3 -0
- real/images/top-camera37.jpg +3 -0
- real/images/top-camera38.jpg +3 -0
- real/images/top-camera39.jpg +3 -0
- real/images/top-camera40.jpg +3 -0
- real/images/top-camera41.jpg +3 -0
- real/images/top-camera42.jpg +3 -0
- real/images/top-camera43.jpg +3 -0
- real/images/top-camera44.jpg +3 -0
- real/images/top-camera45.jpg +3 -0
- real/images/top-camera46.jpg +3 -0
- real/images/top-camera47.jpg +3 -0
LICENSE
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
CC-BY-4.0
|
README.md
CHANGED
|
@@ -1,3 +1,39 @@
|
|
| 1 |
-
---
|
| 2 |
-
license: cc-by-4.0
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: cc-by-4.0
|
| 3 |
+
tags:
|
| 4 |
+
- image-dataset
|
| 5 |
+
- object-detection
|
| 6 |
+
- tic-tac-toe
|
| 7 |
+
task_categories:
|
| 8 |
+
- object-detection
|
| 9 |
+
---
|
| 10 |
+
|
| 11 |
+
# Tic-tac-toe Board Dataset
|
| 12 |
+
|
| 13 |
+
## Overview
|
| 14 |
+
- Dataset for occupancy detection of tic-tac-toe boards (top-down view).
|
| 15 |
+
- Contents: real images `real/images` and YOLO-format labels `real/labels`. Synthetic data can be generated on-demand with the scripts in this repo.
|
| 16 |
+
- Classes: 0=empty_cell, 1=white_circle_cell, 2=black_cross_cell
|
| 17 |
+
|
| 18 |
+
## License
|
| 19 |
+
- Dataset: CC-BY-4.0
|
| 20 |
+
- Real images contain no PII/portraits. Credit per README/model card.
|
| 21 |
+
- Source code (generation, training, inference): https://github.com/guren-kaina/AMD_Robotics_Hackathon_2025_ProjectTemplate/tree/main/mission2/code/tic_tac_toe_overlay
|
| 22 |
+
|
| 23 |
+
## Data contents
|
| 24 |
+
- Resolution: depends on capture device (boards are typically centered).
|
| 25 |
+
- Annotation: YOLO txt (class cx cy w h) normalized coords. Matching `.txt` lives in `real/labels`.
|
| 26 |
+
- Synthetic data: generated via `main.py --num-train/--num-val` (noise/contrast changes/distractors included) into `data/synth_grid/`.
|
| 27 |
+
- Parquet export: `dataset.parquet` (generated by `make hf-dataset-stage`) with columns: image, label_file, class_id, cx, cy, w, h. One row per bbox; empty label files produce a single row with null class/coords.
|
| 28 |
+
|
| 29 |
+
## Suggested splits
|
| 30 |
+
- Real images are limited; mix synthetic:real around 8:2 and hold out val/test separately.
|
| 31 |
+
|
| 32 |
+
## Notes and care
|
| 33 |
+
- Optimized for top-down view; for oblique viewpoints or different board designs, re-label and retrain.
|
| 34 |
+
- For new token designs or colors, add annotations and retrain.
|
| 35 |
+
|
| 36 |
+
## Usage example
|
| 37 |
+
```bash
|
| 38 |
+
python main.py --real-data real --num-train 1000 --num-val 200 --force-train
|
| 39 |
+
```
|
dataset.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:93919699bd7660875e3e1117c0daadc41e2b5857defdae86ff1c73941e3c9261
|
| 3 |
+
size 5837
|
real/images/top-camera01.jpg
ADDED
|
Git LFS Details
|
real/images/top-camera02.jpg
ADDED
|
Git LFS Details
|
real/images/top-camera03.jpg
ADDED
|
Git LFS Details
|
real/images/top-camera04.jpg
ADDED
|
Git LFS Details
|
real/images/top-camera05.jpg
ADDED
|
Git LFS Details
|
real/images/top-camera06.jpg
ADDED
|
Git LFS Details
|
real/images/top-camera07.jpg
ADDED
|
Git LFS Details
|
real/images/top-camera08.jpg
ADDED
|
Git LFS Details
|
real/images/top-camera09.jpg
ADDED
|
Git LFS Details
|
real/images/top-camera10.jpg
ADDED
|
Git LFS Details
|
real/images/top-camera11.jpg
ADDED
|
Git LFS Details
|
real/images/top-camera12.jpg
ADDED
|
Git LFS Details
|
real/images/top-camera13.jpg
ADDED
|
Git LFS Details
|
real/images/top-camera14.jpg
ADDED
|
Git LFS Details
|
real/images/top-camera15.jpg
ADDED
|
Git LFS Details
|
real/images/top-camera16.jpg
ADDED
|
Git LFS Details
|
real/images/top-camera17.jpg
ADDED
|
Git LFS Details
|
real/images/top-camera18.jpg
ADDED
|
Git LFS Details
|
real/images/top-camera19.jpg
ADDED
|
Git LFS Details
|
real/images/top-camera20.jpg
ADDED
|
Git LFS Details
|
real/images/top-camera21.jpg
ADDED
|
Git LFS Details
|
real/images/top-camera22.jpg
ADDED
|
Git LFS Details
|
real/images/top-camera23.jpg
ADDED
|
Git LFS Details
|
real/images/top-camera24.jpg
ADDED
|
Git LFS Details
|
real/images/top-camera25.jpg
ADDED
|
Git LFS Details
|
real/images/top-camera26.jpg
ADDED
|
Git LFS Details
|
real/images/top-camera27.jpg
ADDED
|
Git LFS Details
|
real/images/top-camera28.jpg
ADDED
|
Git LFS Details
|
real/images/top-camera29.jpg
ADDED
|
Git LFS Details
|
real/images/top-camera30.jpg
ADDED
|
Git LFS Details
|
real/images/top-camera31.jpg
ADDED
|
Git LFS Details
|
real/images/top-camera32.jpg
ADDED
|
Git LFS Details
|
real/images/top-camera33.jpg
ADDED
|
Git LFS Details
|
real/images/top-camera34.jpg
ADDED
|
Git LFS Details
|
real/images/top-camera35.jpg
ADDED
|
Git LFS Details
|
real/images/top-camera36.jpg
ADDED
|
Git LFS Details
|
real/images/top-camera37.jpg
ADDED
|
Git LFS Details
|
real/images/top-camera38.jpg
ADDED
|
Git LFS Details
|
real/images/top-camera39.jpg
ADDED
|
Git LFS Details
|
real/images/top-camera40.jpg
ADDED
|
Git LFS Details
|
real/images/top-camera41.jpg
ADDED
|
Git LFS Details
|
real/images/top-camera42.jpg
ADDED
|
Git LFS Details
|
real/images/top-camera43.jpg
ADDED
|
Git LFS Details
|
real/images/top-camera44.jpg
ADDED
|
Git LFS Details
|
real/images/top-camera45.jpg
ADDED
|
Git LFS Details
|
real/images/top-camera46.jpg
ADDED
|
Git LFS Details
|
real/images/top-camera47.jpg
ADDED
|
Git LFS Details
|