Skip to content

Commit

Permalink
update patch sizes based on Benji's review
Browse files Browse the repository at this point in the history
  • Loading branch information
saeliddp committed Mar 7, 2024
1 parent 222e1f1 commit 0e3828a
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions cyto_dl/api/data.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,13 @@ class HardwareType(Enum):


class PatchSize(Enum):
"""Patch size for training, and their respective patch shapes.
TODO: get from benji
"""
Patch size for training, and their respective patch shapes.
"""

SMALL = [1, 3, 3]
MEDIUM = [16, 32, 32]
LARGE = [20, 40, 40]
SMALL = [16, 32, 32]
MEDIUM = [16, 64, 64]
LARGE = [16, 128, 128]


# importing skimage takes a while.
Expand Down

0 comments on commit 0e3828a

Please sign in to comment.