Skip to content

Commit

Permalink
Return a tuple, as required by JIT
Browse files Browse the repository at this point in the history
  • Loading branch information
Sacha Refshauge committed Jul 22, 2019
1 parent dc3f53d commit da0a5bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion retinaface.py
Expand Up @@ -387,7 +387,7 @@ def forward(self, x):
detections.append(bbox8)
detections.append(landmark8)

return detections
return tuple(detections)

def load_retinaface_mbnet():
net = RetinaFace_MobileNet()
Expand Down

0 comments on commit da0a5bc

Please sign in to comment.