Remove print.

This commit is contained in:
comfyanonymous 2024-02-19 11:47:26 -05:00
parent 3711b31dff
commit e93cdd0ad0

View File

@ -36,7 +36,6 @@ class EfficientNetEncoder(nn.Module):
x = x * 0.5 + 0.5
x = (x - self.mean.view([3,1,1])) / self.std.view([3,1,1])
o = self.mapper(self.backbone(x))
print(o.shape)
return o