From e7c38f490228b99ba3a412e56a1a5e2835191001 Mon Sep 17 00:00:00 2001 From: Xuebin Qin Date: Sat, 27 Aug 2022 22:03:13 -0700 Subject: [PATCH] Update isnet.py --- IS-Net/models/isnet.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/IS-Net/models/isnet.py b/IS-Net/models/isnet.py index a3937b6..182a8d4 100644 --- a/IS-Net/models/isnet.py +++ b/IS-Net/models/isnet.py @@ -430,10 +430,6 @@ class ISNetGTEncoder(nn.Module): self.side5 = nn.Conv2d(512,out_ch,3,padding=1) self.side6 = nn.Conv2d(512,out_ch,3,padding=1) - def compute_loss_max(self, preds, targets, fs): - - return muti_loss_fusion_max(preds, targets,fs) - def compute_loss(self, preds, targets): return muti_loss_fusion(preds,targets)