Skip to content
This repository was archived by the owner on Jan 13, 2023. It is now read-only.

Commit aec1f34

Browse files
Update README.md
1 parent 62e2255 commit aec1f34

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

zoo/resnet/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ def learner(x, groups):
2626
x = group(x, n_filters, n_blocks)
2727
return x
2828

29-
# Meta-parameter: list of groups: filter size and number of blocks
29+
# Meta-parameter: list of groups: number of filters and number of blocks
3030
groups = { 50 : [ (64, 3), (128, 4), (256, 6), (512, 3) ], # ResNet50
3131
101: [ (64, 3), (128, 4), (256, 23), (512, 3) ], # ResNet101
3232
152: [ (64, 3), (128, 8), (256, 36), (512, 3) ] # ResNet152

0 commit comments

Comments
 (0)