Xiaoyang Chen
Xiaoyang Chen
I was trying to understand how you implement AAF. However, I found it difficulty to understand how it exactly works. Specifically, I am not sure what do you mean in...
Found the code is much slower than Keras counterpart (takes 2-3 times longer time). Do you know why?
Hi, thanks for sharing your code. I am trying to use the boundary loss for 3D (really high-resolution) image segmentation, but I have problems with the implementation of the loss...
I am not an expert on 3D scene understanding. Sorry if my question is too low ... But I have a question on the data used for this work. My...
I noticed that you used class StdConv2d(nn.Conv2d): def forward(self, x): w = self.weight v, m = torch.var_mean(w, dim=[1, 2, 3], keepdim=True, unbiased=False) w = (w - m) / torch.sqrt(v +...