YinkaiW commited on
Commit
1e9e664
·
verified ·
1 Parent(s): ba5a0a3

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +127 -0
README.md ADDED
@@ -0,0 +1,127 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-nc-4.0
3
+ task_categories:
4
+ - video-classification
5
+ - visual-question-answering
6
+ language:
7
+ - en
8
+ tags:
9
+ - laboratory
10
+ - life-science
11
+ - protocol-compliance
12
+ - egocentric-video
13
+ - biology
14
+ - wet-lab
15
+ size_categories:
16
+ - n<1K
17
+ configs:
18
+ - config_name: XMglass
19
+ data_files:
20
+ - path: XMglass/xm.csv
21
+ split: train
22
+ - config_name: DJI
23
+ data_files:
24
+ - path: DJI/dji.csv
25
+ split: train
26
+ ---
27
+
28
+ # LSV: Laboratory Science Video Dataset
29
+
30
+ ## Dataset Description
31
+
32
+ LSV is a multi-view video dataset of wet-lab biology experiments, captured from both **first-person** (XMglass smart glasses) and **third-person** (DJI action camera) perspectives. Each video records a researcher performing a laboratory protocol and is annotated with the corresponding protocol text, scene type, and—where applicable—deliberate procedural errors.
33
+
34
+ The dataset is designed for research on:
35
+ - **Protocol compliance monitoring** — detecting whether a procedure was followed correctly
36
+ - **Procedural error detection** — identifying specific deviations from standard protocols
37
+ - **Egocentric video understanding** — understanding lab activities from a first-person view
38
+ - **Video-language grounding** — linking protocol text to video segments
39
+
40
+ ## Dataset Structure
41
+
42
+ ```
43
+ LSV/
44
+ ├── XMglass/
45
+ │ ├── xm.csv # Metadata (90 entries)
46
+ │ ├── XMprotocol/ # Protocol text files (22 files)
47
+ │ └── XMvideo/ # Video files (105 files, ~75 GB)
48
+ ├── DJI/
49
+ │ ├── dji.csv # Metadata (161 entries)
50
+ │ ├── DJI-Protocol/ # Protocol text files (17 files)
51
+ │ └── DJI-Video/ # Video & image files (251 files, ~219 GB)
52
+ ```
53
+
54
+ ## Metadata Fields
55
+
56
+ Both CSV files share the following columns:
57
+
58
+ | Column | Description |
59
+ |--------|-------------|
60
+ | `Slice_ID` | Unique identifier (e.g., `XM_001`, `DJI-001`) |
61
+ | `Exp_ID` | Experiment group identifier |
62
+ | `Date` | Recording date |
63
+ | `Video Name` | Filename of the video/image |
64
+ | `Scene` | Recording location (`TC hood`, `bench`, `TC room`, `TC`) |
65
+ | `Operation` | Description of the procedure performed |
66
+ | `Protocol` | Filename of the corresponding protocol in the protocol folder |
67
+ | `Issue (if any)` | Description of intentional procedural errors, if present |
68
+ | `Length` | Duration of the video |
69
+ | `Time_stamp` | Timestamps of protocol steps within the video |
70
+ | `Tools` | Lab equipment used |
71
+
72
+ ## Data Collection
73
+
74
+ ### XMglass (First-Person View)
75
+ - **Device**: XM smart glasses with built-in camera
76
+ - **Entries**: 90 annotated video clips
77
+ - **Scenes**: Tissue culture (TC) hood, bench, TC room
78
+
79
+ ### DJI (Third-Person View)
80
+ - **Device**: DJI action camera
81
+ - **Entries**: 161 (127 videos + 34 images)
82
+ - **Scenes**: TC hood, bench, TC room
83
+ - **Note**: Some experiments include paired first-person and third-person recordings of the same procedure
84
+
85
+ ## Covered Procedures
86
+
87
+ The dataset covers a range of common molecular biology and cell culture techniques, including:
88
+
89
+ - Cell line passaging and seeding (HEK293T, iPSCs, cancer cell lines)
90
+ - Lentiviral packaging, collection, and infection
91
+ - CRISPR/Cas9 delivery
92
+ - PCR reaction setup and colony PCR
93
+ - Serial dilution
94
+ - DNA gel electrophoresis (E-gel loading)
95
+ - RNA extraction
96
+ - Cell freezing and thawing
97
+ - Restriction digestion, Gibson assembly, Golden Gate reaction
98
+ - Transformation
99
+ - MiniPrep and NanoDrop quantification
100
+ - FACS staining
101
+
102
+ ## Error Annotations
103
+
104
+ Many videos include **deliberate procedural errors** with detailed descriptions. Examples:
105
+ - Skipping a pipetting step
106
+ - Not changing pipette tips between reagents
107
+ - Adding reagents in the wrong order
108
+ - Omitting incubation or mixing steps
109
+ - Forgetting to add a critical reagent
110
+
111
+ These error annotations enable benchmarking of automated protocol-compliance systems.
112
+
113
+ ## Usage
114
+
115
+ ```python
116
+ from datasets import load_dataset
117
+
118
+ # Load XMglass metadata
119
+ xm = load_dataset("YinkaiW/LSV", name="XMglass", split="train")
120
+
121
+ # Load DJI metadata
122
+ dji = load_dataset("YinkaiW/LSV", name="DJI", split="train")
123
+ ```
124
+
125
+ ## License
126
+
127
+ This dataset is released under the [CC BY-NC 4.0](https://creativecommons.org/licenses/by-nc/4.0/) license.