Skip to content

Commit

Permalink
fix dims error
Browse files Browse the repository at this point in the history
  • Loading branch information
mzouink committed Nov 13, 2024
1 parent 3556c9d commit ea4f2b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dacapo/experiments/architectures/architecture.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ def dims(self) -> int:
Note:
The method is optional and can be overridden in the derived class.
"""
return self.input_shape.dims
return Coordinate(self.input_shape).dims

def scale(self, input_voxel_size: Coordinate) -> Coordinate:
"""
Expand Down

0 comments on commit ea4f2b1

Please sign in to comment.