File size: 1,828 Bytes
51d9e8c
94f6334
 
 
938a7e8
94f6334
 
 
 
 
938a7e8
94f6334
 
 
 
938a7e8
94f6334
 
51d9e8c
94f6334
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
938a7e8
94f6334
 
 
 
 
 
 
 
 
 
 
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
---
pretty_name: WTB-Bench
language:
- en
license: apache-2.0
task_categories:
- visual-question-answering
task_ids:
- multiple-choice-qa
tags:
- benchmark
- visual-question-answering
- wind-turbine
- inspection
- defect-detection
- computer-vision
size_categories:
- 1K<n<10K
---

# WTB-Bench

WTB-Bench is a visual question answering benchmark for wind turbine inspection. Each example pairs a turbine image with a multiple-choice question, answer key, options, and task type.

## Dataset Structure

This repository uses the Hugging Face ImageFolder layout:

```text
test/
  metadata.jsonl
  images/
    <sha256>.jpg
```

`metadata.jsonl` contains one JSON object per question. The `file_name` field points to the relative image path.

## Fields

- `image`: The wind turbine inspection image loaded by Hugging Face Datasets from `file_name`.
- `question`: Multiple-choice question.
- `answer`: Correct option key, such as `A`, `B`, `C`, or `D`.
- `options`: Mapping from option key to option text.
- `task_type`: Question category, such as `existence`, `counting`, `classification`, `localization`, or `analysis`.

## Splits

- `test`: 1,200 QA entries over 288 unique images.

## Usage

```python
from datasets import load_dataset

dataset = load_dataset("withstaticTai/WTB-Bench")
example = dataset["test"][0]
```

## Intended Use

WTB-Bench is intended for evaluating visual question answering systems on wind turbine inspection scenarios, including defect existence, counting, classification, localization, and inspection implication analysis.

## Limitations

The dataset is provided as a benchmark test split. It should not be treated as a complete training corpus for wind turbine defect recognition. Model outputs should be interpreted with domain expertise before any operational inspection or maintenance decision.