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
This line output = F.sigmoid(self.conv10(conv9))
cause UserWarning: nn.functional.sigmoid is deprecated. Use torch.sigmoid instead. warnings.warn("nn.functional.sigmoid is deprecated. Use torch.sigmoid instead.")
It should be: output = torch.sigmoid(self.conv10(conv9))
The text was updated successfully, but these errors were encountered:
This line
output = F.sigmoid(self.conv10(conv9))
cause
UserWarning: nn.functional.sigmoid is deprecated. Use torch.sigmoid instead. warnings.warn("nn.functional.sigmoid is deprecated. Use torch.sigmoid instead.")
It should be:
output = torch.sigmoid(self.conv10(conv9))
The text was updated successfully, but these errors were encountered: