File size: 2,004 Bytes
4bd9ede
804def5
4bd9ede
 
 
 
 
 
 
 
 
 
 
 
 
 
32b137f
804def5
4bd9ede
32b137f
4bd9ede
 
 
 
32b137f
4bd9ede
 
 
 
 
 
 
 
 
 
 
 
 
 
 
32b137f
4bd9ede
f41907b
32b137f
4bd9ede
 
 
 
 
 
32b137f
4bd9ede
 
 
 
 
 
 
 
 
 
 
 
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
---
pretty_name: Analog Clocks Combinations Dataset for Finetuning
tags:
  - images
  - clocks
  - computer-vision
  - synthetic
  - time-recognition
license: cc-by-4.0
dataset_type: image
task_categories:
  - image-classification
size_categories:
  - 10K<n<100K
---


# Analog Clocks Combinations Dataset for Finetuning

This repository hosts a collection of 43,200 high-quality, synthetic images of analog clocks, generated for every possible hour, minute, and second in a 12-hour cycle, and for each of three clock types:
1. **Base:** normal clocks.
2. **Distorted:** dial with distorted shape.
3. **Modified hands:** hands with the same thickness and with an arrow.

The data is useful for training and benchmarking computer vision models on tasks like time recognition, synthetic recognition, and image understanding.
The images are used in the experiments in this preprint: [https://arxiv.org/abs/2505.10862](https://arxiv.org/abs/2505.10862)


## Dataset Structure

Each entry in the dataset contains the following fields:
- `type`: (string) The type of clock (`base`, `distorted`, or `modified_hands`).
- `question`: (string) Always "What time is shown on the clock in the given image?"
- `answer`: (string) Time in the image in `HH:MM:SS` format.
- `image`: (image file) Image of the analog clock.


## Usage

You can load this dataset using the Hugging Face Datasets library:
```sh
from datasets import load_dataset
dataset = load_dataset('migonsa/analog_clocks_combinations_for_finetuning', split='train')
```

## Source and Citation

If you use this dataset, please cite the preprint:
> Experiments using these images: [https://arxiv.org/abs/2505.10862](https://arxiv.org/abs/2505.10862)


## License

CC BY 4.0 — You are free to use, share, and adapt with attribution.

---

## Considerations & Limitations

- The dataset is synthetic and may not represent real-world clock image variability (lighting, background, occlusion, etc.).
- All images generated in a controlled environment.

---