Skip to content

Commit 92e8f43

Browse files
authored
Merge pull request #385 from bioimage-io/fix_data_dep_size
Fix data dep size
2 parents 5dc6b3a + 4137282 commit 92e8f43

File tree

5 files changed

+37
-11
lines changed

5 files changed

+37
-11
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
.env
12
.idea/
23
.tox/
34
*.egg-info/

README.md

+4
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,10 @@ The model specification and its validation tools can be found at <https://github
124124

125125
## Changelog
126126

127+
### 0.6.2
128+
129+
* Fix [#384](https://github.com/bioimage-io/core-bioimage-io-python/issues/384)
130+
127131
### 0.6.1
128132

129133
* Fix [#378](https://github.com/bioimage-io/core-bioimage-io-python/pull/378) (with [#379](https://github.com/bioimage-io/core-bioimage-io-python/pull/379))*

bioimageio/core/VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"version": "0.6.1"
2+
"version": "0.6.2"
33
}

bioimageio/core/block.py

+23
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
Halo,
1717
HaloLike,
1818
PadMode,
19+
SliceInfo,
1920
TotalNumberOfBlocks,
2021
)
2122
from .tensor import Tensor
@@ -34,6 +35,7 @@ def inner_data(self):
3435

3536
def __post_init__(self):
3637
super().__post_init__()
38+
assert not any(v == -1 for v in self.sample_shape.values()), self.sample_shape
3739
for a, s in self.data.sizes.items():
3840
slice_ = self.inner_slice[a]
3941
halo = self.halo.get(a, Halo(0, 0))
@@ -65,6 +67,27 @@ def get_transformed(
6567
) -> Self:
6668
raise NotImplementedError
6769

70+
@classmethod
71+
def from_meta(cls, meta: BlockMeta, data: Tensor) -> Self:
72+
return cls(
73+
sample_shape={
74+
k: data.tagged_shape[k] if v == -1 else v
75+
for k, v in meta.sample_shape.items()
76+
},
77+
inner_slice={
78+
k: (
79+
SliceInfo(start=v.start, stop=data.tagged_shape[k])
80+
if v.stop == -1
81+
else v
82+
)
83+
for k, v in meta.inner_slice.items()
84+
},
85+
halo=meta.halo,
86+
block_index=meta.block_index,
87+
blocks_in_sample=meta.blocks_in_sample,
88+
data=data,
89+
)
90+
6891

6992
def split_tensor_into_blocks(
7093
tensor: Tensor,

bioimageio/core/sample.py

+8-10
Original file line numberDiff line numberDiff line change
@@ -251,18 +251,16 @@ def get_member_halo(m: MemberId, round: Callable[[float], int]):
251251

252252
def with_data(self, data: PerMember[Tensor], *, stat: Stat) -> SampleBlock:
253253
return SampleBlock(
254-
sample_shape=self.sample_shape,
254+
sample_shape={
255+
m: {
256+
a: data[m].tagged_shape[a] if s == -1 else s
257+
for a, s in member_shape.items()
258+
}
259+
for m, member_shape in self.sample_shape.items()
260+
},
255261
sample_id=self.sample_id,
256262
blocks={
257-
m: Block(
258-
sample_shape=self.sample_shape[m],
259-
inner_slice=b.inner_slice,
260-
halo=b.halo,
261-
block_index=b.block_index,
262-
blocks_in_sample=b.blocks_in_sample,
263-
data=data[m],
264-
)
265-
for m, b in self.blocks.items()
263+
m: Block.from_meta(b, data=data[m]) for m, b in self.blocks.items()
266264
},
267265
stat=stat,
268266
block_index=self.block_index,

0 commit comments

Comments
 (0)