File size: 1,007 Bytes
69ea561
 
 
84975d9
 
 
 
 
 
69ea561
84975d9
 
 
 
 
 
 
 
 
 
69ea561
 
 
 
 
 
84975d9
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
69ea561
 
 
 
 
 
 
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
---
dataset_info:
  features:
  - name: images
    sequence: image
  - name: problem
    dtype: string
  - name: answer
    dtype: string
  splits:
  - name: train
    num_bytes: 106400000
    num_examples: 500
  download_size: 106400000
  dataset_size: 106400000
configs:
- config_name: default
  data_files:
  - split: train
    path: data/train-*
---

# Stepcount-500

## Dataset Description

Stepcount-500 is a benchmark dataset of 500 counting samples with object counts ranging from 11 to 50.

## Dataset Structure

### Data Fields

- `images`: A sequence of images (one image per sample)
- `problem`: The question text describing the counting task
- `answer`: The ground truth count number

### Data Splits

- **train**: 500 evaluation samples

## Dataset Statistics

- Count range: 11-50
- Distribution: 11-20 (130), 21-30 (130), 31-40 (120), 41-50 (120)
- Total dataset size: approximately 106 MB

## Usage

```python
from datasets import load_dataset
ds = load_dataset("SI-Lab/Stepcount-500")
```