File size: 3,101 Bytes
bfa4172
 
 
 
b689a51
 
 
 
 
 
4253f7e
b689a51
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
bfa4172
 
 
 
 
954322e
4253f7e
 
b689a51
0b62c6d
b689a51
0b62c6d
b689a51
 
 
 
 
 
 
0b62c6d
b689a51
0b62c6d
b689a51
0b62c6d
b689a51
 
 
 
 
 
 
 
 
 
0b62c6d
 
b689a51
0b62c6d
b689a51
0b62c6d
b689a51
0b62c6d
 
b689a51
0b62c6d
 
b689a51
954322e
b689a51
 
 
 
954322e
b689a51
 
 
954322e
b689a51
954322e
b689a51
954322e
b689a51
 
954322e
b689a51
954322e
b689a51
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
---
pretty_name: LabOPBench
language:
- en
task_categories:
- visual-question-answering
configs:
- config_name: all
  data_files:
  - split: test
    path: data/*.jsonl
- config_name: Experiment_Character
  data_files:
  - split: test
    path: data/Experiment_Character.jsonl
- config_name: Experiment_Monitor
  data_files:
  - split: test
    path: data/Experiment_Monitor.jsonl
- config_name: Experiment_Postprocess
  data_files:
  - split: test
    path: data/Experiment_Postprocess.jsonl
- config_name: Experiment_Preparation
  data_files:
  - split: test
    path: data/Experiment_Preparation.jsonl
- config_name: material_science
  data_files:
  - split: test
    path: data/material_science.jsonl
---

# LabOPBench

LabOPBench is a benchmark for evaluating multimodal large language models in realistic laboratory scenarios. It is designed to assess their capabilities in experimental workflow reasoning, safety and anomaly assessment, operational decision-making, and result analysis.

GitHub: [johnnylee00/LabOPBench](https://github.com/johnnylee00/LabOPBench)

This private partial release contains 100 questions: 20 examples from each major category. Each record includes the question, image path(s), and A-D scoring answers. The full benchmark will be expanded after the paper is released.

## Files

- `data/Experiment_Character.jsonl`
- `data/Experiment_Monitor.jsonl`
- `data/Experiment_Postprocess.jsonl` including TLC examples
- `data/Experiment_Preparation.jsonl`
- `data/material_science.jsonl`
- `images/` contains all referenced PNG files
- `examples/evaporation_example.json` is a qualitative model-response example and is not part of the formal HF dataset configs

## Data Format

Each JSONL row uses this structure:

```json
{
  "id": "...",
  "major_category": "Experiment_Postprocess",
  "category": "TLC",
  "item_no": "TLC_001",
  "question": "...",
  "image": ["TLC/TLC_001_01.png"],
  "answers": ["A: ... (3 points)", "B: ... (2 points)", "C: ... (1 point)", "D: ... (0 points)"]
}
```

The `image` entries are relative paths under the repository's `images/` directory.

## Quick Start

For private access, log in first:

```bash
hf auth login
```

Download the dataset repository and run an evaluation:

```bash
git clone https://github.com/johnnylee00/LabOPBench.git
cd LabOPBench
python -m pip install -e ".[openai]"

export OPENAI_API_KEY="<your-api-key>"
export OPENAI_BASE_URL="<your-base-url>"
MODEL="<model-name>"

hf download JOHNNYlee1/LabOPBench --repo-type dataset --local-dir data/LabOPBench

labopbench run   --data data/LabOPBench/data/Experiment_Postprocess.jsonl   --image-base-dir data/LabOPBench/images   --model-name "$MODEL"   --out outputs/experiment_postprocess_answers.json

labopbench score   --pred outputs/experiment_postprocess_answers.json   --data data/LabOPBench/data/Experiment_Postprocess.jsonl   --out outputs/experiment_postprocess_scores.json
```

## Release Note

This is an initial private release for repository setup and workflow validation. It should not be treated as the complete benchmark or as a hidden-test leaderboard set.