We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 08b1dcb commit 3e78f16Copy full SHA for 3e78f16
py/lib/models/yolo_v1.py
@@ -56,7 +56,7 @@ def __init__(self, S=7, B=2, C=20):
56
)
57
self.avgpool = nn.AdaptiveAvgPool2d((7, 7))
58
self.classifier = nn.Sequential(
59
- nn.Dropout(),
+ # nn.Dropout(),
60
nn.Linear(7 * 7 * 1024, 4096),
61
nn.ReLU(inplace=True),
62
nn.Linear(4096, S * S * (B * 5 + C))
0 commit comments