AntonXue commited on
Commit
36740c5
1 Parent(s): 69b20bc

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +5 -2
README.md CHANGED
@@ -41,10 +41,13 @@ This dataset contains vision data from cholecystectomy surgery (gallbladder remo
41
  - **organs**: The (360,640) label of background (0), liver (1), gallbladder (2), and hepatocystic triangle (3).
42
 
43
  ### Data Splits
44
- - **all_data**: All 1015 data are provided in a single split.
 
 
45
 
46
  ## Usage
47
  ```
48
  from datasets import load_dataset
49
- dataset = load_dataset("BrachioLab/cholecystectomy_segmentation")
 
50
  ```
 
41
  - **organs**: The (360,640) label of background (0), liver (1), gallbladder (2), and hepatocystic triangle (3).
42
 
43
  ### Data Splits
44
+ - **train**: 812 samples
45
+ - **test**: 203 samples
46
+ - Total: 1015 samples
47
 
48
  ## Usage
49
  ```
50
  from datasets import load_dataset
51
+ train_dataset = load_dataset("BrachioLab/cholecystectomy_segmentation", split="train")
52
+ test_dataset = load_dataset("BrachioLab/cholecystectomy_segmentation", split="test")
53
  ```