Skip to content

Commit

Permalink
chore: Bump version to 0.1.2 in pyproject.toml and update input_size_…
Browse files Browse the repository at this point in the history
…step to accept a list in Architecture class
  • Loading branch information
rhoadesScholar committed Jan 9, 2025
1 parent efcdbcf commit 83f4b69
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ license = { text = "BSD 3-Clause License" }
authors = [
{ email = "[email protected]", name = "Jeff Rhoades" },
]
version = "0.1.1"
version = "0.1.2"
dependencies = [
'torch',
'torchvision',
Expand Down
2 changes: 1 addition & 1 deletion src/cellmap_models/pytorch/cosem/load_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ def compute_minimal_shapes(self):

self.min_input_shape = [int(s) for s in min_input_shape]
self.min_output_shape = [int(s) for s in min_output_shape]
self.input_size_step = int(step)
self.input_size_step = [int(s) for s in step]

def round_to_valid_input_shape(self, shape=None, mode="grow"):
"""
Expand Down

0 comments on commit 83f4b69

Please sign in to comment.