Skip to content

Commit 1c8f7c1

Browse files
authored
Merge pull request #379 from bioimage-io/import_callable
remove singledispatch for better static typing
2 parents 60b1625 + 10f4fa0 commit 1c8f7c1

File tree

3 files changed

+38
-39
lines changed

3 files changed

+38
-39
lines changed

README.md

+19-7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# core-bioimage-io-python
22

3-
Python specific core utilities for running models in the [BioImage Model Zoo](https://bioimage.io).
3+
Python specific core utilities for [bioimage.io]("https://bioimage.io") resources (in particular models).
44

55
## Installation
66

@@ -67,7 +67,7 @@ mamba activate core
6767
pip install -e . --no-deps
6868
```
6969

70-
There are different environment files that only install tensorflow or pytorch as dependencies available.
70+
There are different environment files available that only install tensorflow or pytorch as dependencies.
7171

7272
## 💻 Command Line
7373

@@ -106,19 +106,31 @@ bioimagei predict-images -m <MODEL> -i <INPUT_PATTERN> - o <OUTPUT_FOLDER>
106106

107107
## From python
108108

109-
`bioimageio.core` is a python library that implements loading models, running prediction with them and more.
110-
To get an overview of this functionality, check out the example notebooks:
109+
`bioimageio.core` is a python package that implements prediction with bioimageio models
110+
including standardized pre- and postprocessing operations.
111+
These models are described by---and can be loaded with---the bioimageio.spec package.
111112

112-
* [example/model_usage](https://github.com/bioimage-io/core-bioimage-io-python/blob/main/example/model_usage.ipynb) for how to load models and run prediction with them
113-
* [example/model_creation](https://github.com/bioimage-io/core-bioimage-io-python/blob/main/example/model_creation.ipynb) for how to create bioimage.io compatible model packages
114-
* [example/dataset_statistics_demo](https://github.com/bioimage-io/core-bioimage-io-python/blob/main/example/dataset_statistics_demo.ipynb) for how to use the dataset statistics for advanced pre-and-postprocessing
113+
In addition bioimageio.core provides functionality to convert model weight formats.
114+
115+
To get an overview of this functionality, check out these example notebooks:
116+
117+
* [model creation/loading with bioimageio.spec](https://github.com/bioimage-io/spec-bioimage-io/blob/main/example_use/load_model_and_create_your_own.ipynb)
115118

116119
## Model Specification
117120

118121
The model specification and its validation tools can be found at <https://github.com/bioimage-io/spec-bioimage-io>.
119122

120123
## Changelog
121124

125+
### 0.6.1
126+
127+
* 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))*
128+
129+
### 0.6.0
130+
131+
* add compatibility with new bioimageio.spec 0.5 (0.5.2post1)
132+
* improve interfaces
133+
122134
### 0.5.10
123135

124136
* [Fix critical bug in predict with tiling](https://github.com/bioimage-io/core-bioimage-io-python/pull/359)

bioimageio/core/VERSION

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

bioimageio/core/digest_spec.py

+18-31
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
from __future__ import annotations
22

33
import importlib.util
4-
from functools import singledispatch
54
from itertools import chain
65
from typing import (
76
Any,
@@ -20,7 +19,7 @@
2019
from numpy.typing import NDArray
2120
from typing_extensions import Unpack, assert_never
2221

23-
from bioimageio.spec._internal.io import HashKwargs, download
22+
from bioimageio.spec._internal.io_utils import HashKwargs, download
2423
from bioimageio.spec.common import FileSource
2524
from bioimageio.spec.model import AnyModelDescr, v0_4, v0_5
2625
from bioimageio.spec.model.v0_4 import CallableFromDepencency, CallableFromFile
@@ -44,44 +43,32 @@
4443
from .tensor import Tensor
4544

4645

47-
@singledispatch
48-
def import_callable(node: type, /) -> Callable[..., Any]:
46+
def import_callable(
47+
node: Union[CallableFromDepencency, ArchitectureFromLibraryDescr],
48+
/,
49+
**kwargs: Unpack[HashKwargs],
50+
) -> Callable[..., Any]:
4951
"""import a callable (e.g. a torch.nn.Module) from a spec node describing it"""
50-
raise TypeError(type(node))
51-
52-
53-
@import_callable.register
54-
def _(node: CallableFromDepencency, **kwargs: Unpack[HashKwargs]) -> Callable[..., Any]:
55-
module = importlib.import_module(node.module_name)
56-
c = getattr(module, str(node.callable_name))
57-
if not callable(c):
58-
raise ValueError(f"{node} (imported: {c}) is not callable")
59-
60-
return c
52+
if isinstance(node, CallableFromDepencency):
53+
module = importlib.import_module(node.module_name)
54+
c = getattr(module, str(node.callable_name))
55+
elif isinstance(node, ArchitectureFromLibraryDescr):
56+
module = importlib.import_module(node.import_from)
57+
c = getattr(module, str(node.callable))
58+
elif isinstance(node, CallableFromFile):
59+
c = _import_from_file_impl(node.source_file, str(node.callable_name), **kwargs)
60+
elif isinstance(node, ArchitectureFromFileDescr):
61+
c = _import_from_file_impl(node.source, str(node.callable), sha256=node.sha256)
6162

63+
else:
64+
assert_never(node)
6265

63-
@import_callable.register
64-
def _(
65-
node: ArchitectureFromLibraryDescr, **kwargs: Unpack[HashKwargs]
66-
) -> Callable[..., Any]:
67-
module = importlib.import_module(node.import_from)
68-
c = getattr(module, str(node.callable))
6966
if not callable(c):
7067
raise ValueError(f"{node} (imported: {c}) is not callable")
7168

7269
return c
7370

7471

75-
@import_callable.register
76-
def _(node: CallableFromFile, **kwargs: Unpack[HashKwargs]):
77-
return _import_from_file_impl(node.source_file, str(node.callable_name), **kwargs)
78-
79-
80-
@import_callable.register
81-
def _(node: ArchitectureFromFileDescr, **kwargs: Unpack[HashKwargs]):
82-
return _import_from_file_impl(node.source, str(node.callable), sha256=node.sha256)
83-
84-
8572
def _import_from_file_impl(
8673
source: FileSource, callable_name: str, **kwargs: Unpack[HashKwargs]
8774
):

0 commit comments

Comments
 (0)