You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I trained the model from scratch with one of my dataset. When I perform the inference, the actual call takes around 23ms. Why is it so slow? BisNet runs with 9ms. GPU is a Titan RTX.
Code snippet:
model.eval()
with torch.no_grad():
t = time.time()
pr_mask = model.forward(x_tensor)
print(time.time() - t)
x_tensor.shape is torch.Size([1, 3, 2080, 2464])
Thank you in advance.
The text was updated successfully, but these errors were encountered:
Hi all,
I trained the model from scratch with one of my dataset. When I perform the inference, the actual call takes around 23ms. Why is it so slow? BisNet runs with 9ms. GPU is a Titan RTX.
Code snippet:
Thank you in advance.
The text was updated successfully, but these errors were encountered: