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

Commit 9688cf7

Browse files
fix comment typo
1 parent aec1f34 commit 9688cf7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

zoo/resnet/resnet_v1.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ def classifier(x, n_classes):
141141
outputs = Dense(n_classes, activation='softmax', kernel_initializer='he_normal')(x)
142142
return outputs
143143

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

0 commit comments

Comments
 (0)