Richou

Results 4 issues of Richou

Hi, thanks for your work. Have you tested whether your method is effective for general structured data other than images?

这里在return时不需要softmax吗? ```python def net(X): X = X.view((-1, num_inputs)) H = relu(torch.matmul(X, W1) + b1) return torch.matmul(H, W2) + b2 ```

I made fine-tuning on the *Bitmoji* dataset according to the *Domain Adaptation* section, and the segmentation mask obtained is still far from the truth. Could you please advise how to...