Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bug? #19

Closed
Chenguang-Wang opened this issue Apr 14, 2022 · 1 comment
Closed

Bug? #19

Chenguang-Wang opened this issue Apr 14, 2022 · 1 comment

Comments

@Chenguang-Wang
Copy link

Chenguang-Wang commented Apr 14, 2022

I think this is a bug in the train_mtunet_ACDC.py code. Could you example it?
88 val_outputs = model(val_image_batch)
89 val_outputs = torch.argmax(torch.softmax(outputs, dim=1), dim=1).squeeze(0)
It should be:
88 val_outputs = model(val_image_batch)
89 val_outputs = torch.argmax(torch.softmax(val_outputs , dim=1), dim=1).squeeze(0)

@Dootmaan
Copy link
Owner

Dootmaan commented Apr 15, 2022

Thank you @Chenguang-Wang. This bug is caused by the fixing of issue #13 . We have corrected it in both branches now.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants