glenn-jocher
commited on
Commit
·
2b18924
1
Parent(s):
02445d1
yolo.py bug fix
Browse files- models/yolo.py +1 -2
models/yolo.py
CHANGED
@@ -74,8 +74,7 @@ class Model(nn.Module):
|
|
74 |
|
75 |
# Init weights, biases
|
76 |
torch_utils.initialize_weights(self)
|
77 |
-
self.
|
78 |
-
torch_utils.model_info(self)
|
79 |
print('')
|
80 |
|
81 |
def forward(self, x, augment=False, profile=False):
|
|
|
74 |
|
75 |
# Init weights, biases
|
76 |
torch_utils.initialize_weights(self)
|
77 |
+
self.info()
|
|
|
78 |
print('')
|
79 |
|
80 |
def forward(self, x, augment=False, profile=False):
|