Update README.md
Browse files
README.md
CHANGED
@@ -29,3 +29,21 @@ configs:
|
|
29 |
- split: all_data
|
30 |
path: data/all_data-*
|
31 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
29 |
- split: all_data
|
30 |
path: data/all_data-*
|
31 |
---
|
32 |
+
|
33 |
+
## Dataset Structure
|
34 |
+
|
35 |
+
This dataset contains vision data from cholecystectomy surgery (gallbladder removal).
|
36 |
+
|
37 |
+
### Data Fields
|
38 |
+
- **image**: The PIL image of the surgery view.
|
39 |
+
- **gonogo**: The (360,640) label of background (0), safe (1), and unsafe (2).
|
40 |
+
- **organs**: The (360,640) label of background (0), liver (1), gallbladder (2), and hepatocystic triangle (3).
|
41 |
+
|
42 |
+
### Data Splits
|
43 |
+
- **all_data**: All 1015 data are provided in a single split.
|
44 |
+
|
45 |
+
## Usage
|
46 |
+
```
|
47 |
+
from datasets import load_dataset
|
48 |
+
dataset = load_dataset("BrachioLab/cholecystectomy_segmentation")
|
49 |
+
```
|