Update README.md
Browse files
README.md
CHANGED
|
@@ -21,3 +21,31 @@ dataset_info:
|
|
| 21 |
download_size: 54700022689
|
| 22 |
dataset_size: 54704422046
|
| 23 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 21 |
download_size: 54700022689
|
| 22 |
dataset_size: 54704422046
|
| 23 |
---
|
| 24 |
+
# CellMap 2D
|
| 25 |
+
|
| 26 |
+
This dataset contains all 2D slices from the EM volumes used in the [CellMap segmentation challenge](https://cellmapchallenge.janelia.org/).
|
| 27 |
+
The dataset contains all *x*, *y*, *z* slices obtained from a total of 289 3D crops (the crops come from 22 different samples).
|
| 28 |
+
|
| 29 |
+
You can load the dataset as follows (*non-streaming* mode):
|
| 30 |
+
```python
|
| 31 |
+
ds = load_dataset("eminorhan/cellmap-2d", split='train')
|
| 32 |
+
```
|
| 33 |
+
and then inspect the first data row:
|
| 34 |
+
```python
|
| 35 |
+
>>> print(ds[0])
|
| 36 |
+
>>> {
|
| 37 |
+
'image': <PIL.PngImagePlugin.PngImageFile image mode=L size=300x300 at 0xFFF93926C850>,
|
| 38 |
+
'crop_name': 'jrc_mus-kidney/recon-1/crop129',
|
| 39 |
+
'axis': 'z',
|
| 40 |
+
'slice': 0
|
| 41 |
+
}
|
| 42 |
+
```
|
| 43 |
+
where:
|
| 44 |
+
* `image` contains the actual 2D slice encoded as a `PIL.Image` object.
|
| 45 |
+
* `crop_name` is an identifier string indicating the sample and crop names the slice comes from.
|
| 46 |
+
* `axis` indicates the axis along which the slice was taken (`x`, `y`, or `z`).
|
| 47 |
+
* `slice` is the slice index along the `axis`.
|
| 48 |
+
|
| 49 |
+
Please note that the dataset rows are **not** pre-shuffled.
|
| 50 |
+
|
| 51 |
+
**License:** The data originally come from HHMI Janelia's [OpenOrganelle](https://www.openorganelle.org/) data portal and are [released](https://www.openorganelle.org/faq#sharing) under the [CC-BY-4.0](https://creativecommons.org/licenses/by/4.0/deed.en) license.
|