File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff 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
3536python_requires = >=3.6
Original file line number Diff line number Diff 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 ))
You can’t perform that action at this time.
0 commit comments