From 363d7ba45348e702680c3c94e1d29888991235e8 Mon Sep 17 00:00:00 2001 From: Deep Patel <35742688+deepsworld@users.noreply.github.com> Date: Fri, 5 Nov 2021 14:31:53 -0400 Subject: [PATCH] Suppress ONNX export trace warning (#5437) Checking for `onnx_dynamic` first should suppress the warning: ```log TracerWarning: Converting a tensor to a Python boolean might cause the trace to be incorrect. We can't record the data flow of Python values, so this value will be treated as a constant in the future. This means that the trace might not generalize to other inputs! if self.grid[i].shape[2:4] != x[i].shape[2:4] or self.onnx_dynamic ``` --- models/yolo.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/models/yolo.py b/models/yolo.py index 85c8d43258e3..510f8e58d9a3 100644 --- a/models/yolo.py +++ b/models/yolo.py @@ -55,7 +55,7 @@ def forward(self, x): x[i] = x[i].view(bs, self.na, self.no, ny, nx).permute(0, 1, 3, 4, 2).contiguous() if not self.training: # inference - if self.grid[i].shape[2:4] != x[i].shape[2:4] or self.onnx_dynamic: + if self.onnx_dynamic or self.grid[i].shape[2:4] != x[i].shape[2:4]: self.grid[i], self.anchor_grid[i] = self._make_grid(nx, ny, i) y = x[i].sigmoid()