-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Depricate old data configs, add simplified data config
- Loading branch information
Showing
8 changed files
with
166 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
from .dataset_config import DatasetConfig | ||
|
||
from funlib.persistence import Array, open_ds | ||
|
||
|
||
import attr | ||
|
||
from pathlib import Path | ||
import numpy as np | ||
|
||
@attr.s | ||
class SimpleDataset(DatasetConfig): | ||
|
||
path: Path = attr.ib() | ||
weight: int = attr.ib(default=1) | ||
raw_name: str = attr.ib(default="raw") | ||
gt_name: str = attr.ib(default="labels") | ||
mask_name: str = attr.ib(default="mask") | ||
|
||
@staticmethod | ||
def dataset_type(dataset_config): | ||
return dataset_config | ||
|
||
@property | ||
def raw(self) -> Array: | ||
raw_array = open_ds(self.path / self.raw_name) | ||
dtype = raw_array.dtype | ||
if dtype == np.uint8: | ||
raw_array.lazy_op(lambda data: data.astype(np.float32) / 255) | ||
elif dtype == np.uint16: | ||
raw_array.lazy_op(lambda data: data.astype(np.float32) / 65535) | ||
elif np.issubdtype(dtype, np.floating): | ||
pass | ||
elif np.issubdtype(dtype, np.integer): | ||
raise Exception( | ||
f"Not sure how to normalize intensity data with dtype {dtype}" | ||
) | ||
return raw_array | ||
|
||
@property | ||
def gt(self) -> Array: | ||
return open_ds(self.path / self.gt_name) | ||
|
||
@property | ||
def mask(self) -> Array | None: | ||
mask_path = self.path / self.mask_name | ||
if mask_path.exists(): | ||
mask = open_ds(mask_path) | ||
assert np.issubdtype(mask.dtype, np.integer), "Mask must be integer type" | ||
mask.lazy_op(lambda data: data > 0) | ||
return mask | ||
return None | ||
|
||
@property | ||
def sample_points(self) -> None: | ||
return None | ||
|
||
|
||
def __eq__(self, other) -> bool: | ||
return isinstance(other, type(self)) and self.name == other.name | ||
|
||
def __hash__(self) -> int: | ||
return hash(self.name) | ||
|
||
def __repr__(self) -> str: | ||
return self.name | ||
|
||
def __str__(self) -> str: | ||
return self.name |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
from .datasets.simple import SimpleDataset | ||
from .datasplit_config import DataSplitConfig | ||
|
||
import attr | ||
|
||
from pathlib import Path | ||
|
||
import glob | ||
|
||
@attr.s | ||
class SimpleDataSplitConfig(DataSplitConfig): | ||
""" | ||
A convention over configuration datasplit that can handle many of the most | ||
basic cases. | ||
""" | ||
|
||
path: Path = attr.ib() | ||
name: str = attr.ib() | ||
train_group_name: str = attr.ib(default="train") | ||
validate_group_name: str = attr.ib(default="test") | ||
raw_name: str = attr.ib(default="raw") | ||
gt_name: str = attr.ib(default="labels") | ||
mask_name: str = attr.ib(default="mask") | ||
|
||
@staticmethod | ||
def datasplit_type(datasplit_config): | ||
return datasplit_config | ||
|
||
def get_paths(self, group_name: str) -> list[Path]: | ||
level_0 = f"{self.path}/{self.raw_name}" | ||
level_1 = f"{self.path}/{group_name}/{self.raw_name}" | ||
level_2 = f"{self.path}/{group_name}/**/{self.raw_name}" | ||
level_0_matches = glob.glob(level_0) | ||
level_1_matches = glob.glob(level_1) | ||
level_2_matches = glob.glob(level_2) | ||
if len(level_0_matches) > 0: | ||
assert ( | ||
len(level_1_matches) == len(level_2_matches) == 0 | ||
), f"Found raw data at {level_0} and {level_1} and {level_2}" | ||
return [Path(x).parent for x in level_0_matches] | ||
elif len(level_1_matches) > 0: | ||
assert ( | ||
len(level_2_matches) == 0 | ||
), f"Found raw data at {level_1} and {level_2}" | ||
return [Path(x).parent for x in level_1_matches] | ||
elif len(level_2_matches).parent > 0: | ||
return [Path(x) for x in level_2_matches] | ||
|
||
raise Exception(f"No raw data found at {level_0} or {level_1} or {level_2}") | ||
|
||
@property | ||
def train(self) -> list[SimpleDataset]: | ||
return [ | ||
SimpleDataset( | ||
name=x.stem, | ||
path=x, | ||
) | ||
for x in self.get_paths(self.train_group_name) | ||
] | ||
|
||
@property | ||
def validate(self) -> list[SimpleDataset]: | ||
return [ | ||
SimpleDataset( | ||
name=x.stem, | ||
path=x, | ||
) | ||
for x in self.get_paths(self.validate_group_name) | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters