Skip to content

Commit 0cb3535

Browse files
authored
Merge pull request #222 from thodkatz/bump-bioimageio
Bump bioimageio spec/0.5.3.3 core/0.6.10
2 parents c5ac7d6 + 4d473bc commit 0cb3535

File tree

10 files changed

+37
-23
lines changed

10 files changed

+37
-23
lines changed

.github/workflows/ci.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
auto-activate-base: false
2525
activate-environment: tiktorch-server-env
2626
environment-file: environment.yml
27-
channel-priority: flexible
27+
channel-priority: strict
2828
miniforge-variant: Miniforge3
2929
- name: Get the latest commit hash and target ref
3030
run: |
@@ -51,7 +51,7 @@ jobs:
5151
auto-activate-base: false
5252
activate-environment: tiktorch-server-env
5353
environment-file: environment.yml
54-
channel-priority: flexible
54+
channel-priority: strict
5555
miniforge-variant: Miniforge3
5656
- name: conda diagnostics
5757
run: |
@@ -89,7 +89,7 @@ jobs:
8989
with:
9090
auto-update-conda: true
9191
auto-activate-base: true
92-
channel-priority: flexible
92+
channel-priority: strict
9393
miniforge-variant: Miniforge3
9494
- name: install common conda dependencies
9595
run: conda install -n base -c conda-forge conda-build setuptools_scm -y
@@ -133,7 +133,7 @@ jobs:
133133
with:
134134
auto-update-conda: true
135135
auto-activate-base: true
136-
channel-priority: flexible
136+
channel-priority: strict
137137
miniforge-variant: Miniforge3
138138
- name: install common conda dependencies
139139
run: conda install -n base -c conda-forge conda-build setuptools_scm -y

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,4 @@ tiktorch/__pycache/
88
/#wrapper.py#
99
/.#wrapper.py#
1010
.py~
11+
.vscode

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
SHELL=/bin/bash
22
ROOT_DIR:=$(shell dirname $(realpath $(firstword $(MAKEFILE_LIST))))
33
TIKTORCH_ENV_NAME ?= tiktorch-server-env
4-
SUBMODULES = ./vendor/core-bioimage-io-python ./vendor/spec-bioimage-io
4+
SUBMODULES = ./vendor/spec-bioimage-io ./vendor/core-bioimage-io-python
55

66
protos:
77
python -m grpc_tools.protoc -I./proto --python_out=tiktorch/proto/ --grpc_python_out=tiktorch/proto/ ./proto/*.proto

environment.yml

+21-6
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11
name: tiktorch-server-env
22
channels:
3-
- ilastik-forge
43
- pytorch
4+
- ilastik-forge
55
- conda-forge
6+
- nodefaults
67
dependencies:
78
# - bioimage.spec via submodule
89
# - bioimage.core via submodule
910
- python 3.9.*
10-
- numpy
11+
- numpy >=1.21,<2
1112
- grpcio=1.44 # protobuf 5 requires protoc version > 3.19.0 that requires grpcio >= 1.44
1213
- marshmallow-union
1314
- marshmallow=3.12.*
1415
- marshmallow-jsonschema
1516
- protobuf
1617
- pyyaml=5.3.*
1718
- requests
18-
- ruamel.yaml
1919
- scikit-learn
2020
- scipy
2121
- typing-extensions
@@ -32,17 +32,32 @@ dependencies:
3232
- cpuonly
3333
# - cudatoolkit >=10.2
3434
# - cudnn
35-
# - tochvision
35+
- torchvision
3636

3737
# tensorflow (1.14 is the latest 1.x version on cf)
3838
# so far we don't have any 2.x models in the model zoo
3939
# tensorflow skipped for now, as it conflicts with grpcio version 1.41
4040
# - tensorflow >=2.9,<3.0
4141

42-
# convenient to use bioiamgeio.core tools
43-
- imageio
42+
# bioimageio.spec / bioimageio.core dependencies:
43+
- annotated-types >=0.5.0,<1
44+
- email_validator
45+
- h5py
46+
- imageio >=2.10
47+
- loguru
48+
- packaging >=17.0
49+
- pooch >=1.5,<2
50+
- pydantic >=2.7.0,<2.10
51+
- pydantic-core
52+
- pydantic-settings >=2.5
53+
- python-dateutil
54+
- rich
55+
- ruyaml
56+
- tifffile
4457
- tqdm
4558
- typer
59+
- zipp
60+
4661

4762
# dev stuff
4863
- pytest

setup.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,12 @@
2727
],
2828
packages=find_packages(exclude=["tests"]), # Required
2929
install_requires=[
30-
"bioimageio.spec==0.5.3.2",
31-
"bioimageio.core==0.6.8",
30+
"bioimageio.spec==0.5.3.3",
31+
"bioimageio.core==0.6.10",
3232
"grpcio>=1.31",
3333
"numpy<2", # pytorch 2.2.2-py3.9_0 for macos is compiled with numpy 1.*
3434
"protobuf",
35+
"pydantic>=2.7.0,<2.10",
3536
"pyyaml",
3637
"xarray",
3738
],

tests/test_converters.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@
1616
from tiktorch.proto import inference_pb2
1717

1818

19-
def _numpy_to_pb_tensor(arr):
19+
def _numpy_to_pb_tensor(arr, tensor_id: str = "dummy_tensor_name"):
2020
"""
2121
Makes sure that tensor was serialized/deserialized
2222
"""
23-
tensor = numpy_to_pb_tensor(arr)
23+
tensor = numpy_to_pb_tensor(tensor_id, arr)
2424
parsed = inference_pb2.Tensor()
2525
parsed.ParseFromString(tensor.SerializeToString())
2626
return parsed

tiktorch/converters.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,12 +34,12 @@ def sample_to_pb_tensors(sample: Sample) -> List[inference_pb2.Tensor]:
3434
return [xarray_to_pb_tensor(tensor_id, res_tensor.data) for tensor_id, res_tensor in sample.members.items()]
3535

3636

37-
def numpy_to_pb_tensor(array: np.ndarray, axistags=None) -> inference_pb2.Tensor:
37+
def numpy_to_pb_tensor(tensor_id: str, array: np.ndarray, axistags=None) -> inference_pb2.Tensor:
3838
if axistags:
3939
shape = [inference_pb2.NamedInt(size=dim, name=name) for dim, name in zip(array.shape, axistags)]
4040
else:
4141
shape = [inference_pb2.NamedInt(size=dim) for dim in array.shape]
42-
return inference_pb2.Tensor(dtype=str(array.dtype), shape=shape, buffer=bytes(array))
42+
return inference_pb2.Tensor(tensorId=tensor_id, dtype=str(array.dtype), shape=shape, buffer=bytes(array))
4343

4444

4545
def xarray_to_pb_tensor(tensor_id: str, array: xr.DataArray) -> inference_pb2.Tensor:

tiktorch/server/session/process.py

+1-4
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
from bioimageio.core import PredictionPipeline, Tensor, create_prediction_pipeline
1010
from bioimageio.spec import InvalidDescr, load_description
1111
from bioimageio.spec.model import v0_5
12-
from bioimageio.spec.model.v0_5 import BatchAxis
1312

1413
from tiktorch import log
1514
from tiktorch.rpc import Shutdown
@@ -37,9 +36,7 @@ def _check_shape(self, tensor_id: str, tensor: Tensor):
3736
for axis in spec.axes:
3837
source_axis_size = axis.size
3938
target_axis_size = tensor.sizes[axis.id]
40-
if axis.id not in tensor.sizes:
41-
ValueError(f"{axis.id} not found in {tensor.sizes}")
42-
if isinstance(axis, BatchAxis) and axis.size is None:
39+
if source_axis_size is None:
4340
continue
4441
try:
4542
self._validate_size(source_axis_size, target_axis_size)

0 commit comments

Comments
 (0)