Skip to content

Commit ba60442

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent e690bd8 commit ba60442

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

setup.cfg

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ classifiers =
2020
Programming Language :: Python :: 3.7
2121
Programming Language :: Python :: 3.8
2222
Programming Language :: Python :: 3.9
23+
Programming Language :: Python :: 3.10
2324
Programming Language :: Python :: Implementation :: CPython
2425

2526
[options]
@@ -29,7 +30,7 @@ install_requires =
2930
fast-overlap
3031
numpy
3132
pandas
32-
read_roi
33+
read-roi
3334
tifffile
3435
torch
3536
python_requires = >=3.6

yeast_mrcnn/model.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ def mrcnn():
3333
)
3434

3535
# Make anchor generator with 3 sizes per feature map and 5 aspect ratios
36-
sizes = tuple(2.0 ** x for x in range(5, 12))
36+
sizes = tuple(2.0**x for x in range(5, 12))
3737
aspects = tuple(0.5 * x for x in range(1, 5))
3838
n_feature_maps = 5 # true for resnet50 with FPN
3939
ag_sizes = tuple(tuple(sizes[i : i + 3]) for i in range(n_feature_maps))

0 commit comments

Comments
 (0)