This commit is contained in:
Glenn Jocher 2020-01-23 15:15:53 -08:00
parent 07c8a03aa0
commit d498193456
1 changed files with 1 additions and 2 deletions

View File

@ -222,8 +222,7 @@ class Darknet(nn.Module):
def forward(self, x, var=None):
img_size = x.shape[-2:]
layer_outputs = []
output = []
output, layer_outputs = [], []
verbose = False
if verbose:
print('0', x.shape)