Datasets:
Sricharan Reddy Varra
commited on
Commit
·
2b603f5
1
Parent(s):
5b0b118
remove type hints
Browse files- ark_example.py +2 -2
ark_example.py
CHANGED
|
@@ -60,7 +60,7 @@ _LICENSE = "https://github.com/angelolab/ark-analysis/blob/main/LICENSE"
|
|
| 60 |
# _URL_REPO = "https://huggingface.co/datasets/angelolab/ark_example"
|
| 61 |
|
| 62 |
|
| 63 |
-
_URL_DATA
|
| 64 |
"image_data": "./data/image_data.zip",
|
| 65 |
"cell_table": "./data/segmentation/cell_table.zip",
|
| 66 |
"deepcell_output": "./data/segmentation/deepcell_output.zip",
|
|
@@ -69,7 +69,7 @@ _URL_DATA: dict[str, str] = {
|
|
| 69 |
"spatial_lda": "./data/spatial_analysis/spatial_lda.zip",
|
| 70 |
}
|
| 71 |
|
| 72 |
-
_URL_DATASET_CONFIGS
|
| 73 |
"segment_image_data": {"image_data": _URL_DATA["image_data"]},
|
| 74 |
"cluster_pixels": {
|
| 75 |
"image_data": _URL_DATA["image_data"],
|
|
|
|
| 60 |
# _URL_REPO = "https://huggingface.co/datasets/angelolab/ark_example"
|
| 61 |
|
| 62 |
|
| 63 |
+
_URL_DATA = {
|
| 64 |
"image_data": "./data/image_data.zip",
|
| 65 |
"cell_table": "./data/segmentation/cell_table.zip",
|
| 66 |
"deepcell_output": "./data/segmentation/deepcell_output.zip",
|
|
|
|
| 69 |
"spatial_lda": "./data/spatial_analysis/spatial_lda.zip",
|
| 70 |
}
|
| 71 |
|
| 72 |
+
_URL_DATASET_CONFIGS = {
|
| 73 |
"segment_image_data": {"image_data": _URL_DATA["image_data"]},
|
| 74 |
"cluster_pixels": {
|
| 75 |
"image_data": _URL_DATA["image_data"],
|