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
When I try to train a original SuperpointNet(without batch normal), but the training results will not converge. Is there any parameter I need to modified?
When I try to train a original SuperpointNet(without batch normal), but the training results will not converge. Is there any parameter I need to modified?
Here is my code:
def forward(self, x,):
# Shared Encoder.
x = self.relu(self.conv1a(x))
x = self.relu(self.conv1b(x))
x,ind1 = self.pool(x)
x = self.relu(self.conv2a(x))
x = self.relu(self.conv2b(x))
x,ind2 = self.pool(x)
x = self.relu(self.conv3a(x))
x = self.relu(self.conv3b(x))
x,ind3= self.pool(x)
x = self.relu(self.conv4a(x))
x = self.relu(self.conv4b(x))
# Detector Head.
cPa = self.relu(self.convPa(x))
semi = self.convPb(cPa)
The text was updated successfully, but these errors were encountered: