Skip to content

Commit

Permalink
Merge pull request #388 from bioimage-io/patch_release
Browse files Browse the repository at this point in the history
patch release: do not assume inputs are tileable
  • Loading branch information
FynnBe authored May 2, 2024
2 parents 5449618 + 569845d commit 588bc3a
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,11 @@ The model specification and its validation tools can be found at <https://github

## Changelog

### 0.6.3

* Fix [#386](https://github.com/bioimage-io/core-bioimage-io-python/issues/386)
* (in model inference testing) stop assuming model inputs are tileable

### 0.6.2

* Fix [#384](https://github.com/bioimage-io/core-bioimage-io-python/issues/384)
Expand Down
2 changes: 1 addition & 1 deletion bioimageio/core/VERSION
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"version": "0.6.2"
"version": "0.6.3"
}
2 changes: 1 addition & 1 deletion bioimageio/core/_resource_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ def get_ns(n: int):
) as prediction_pipeline:
for n, batch_size, inputs, exptected_output_shape in generate_test_cases():
error: Optional[str] = None
result = prediction_pipeline.predict_sample_with_blocking(inputs)
result = prediction_pipeline.predict_sample_without_blocking(inputs)
if len(result.members) != len(exptected_output_shape):
error = (
f"Expected {len(exptected_output_shape)} outputs,"
Expand Down

0 comments on commit 588bc3a

Please sign in to comment.