We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
In the forward method of SDnetDecoderBlock, the call to self.unpool can fail if out_block is None. Code should be changed as such
if out_block is not None: unpool = self.unpool(input, indices, out_block.shape) concat = torch.cat((out_block, unpool), dim=1) else: unpool = self.unpool(input, indices) concat = unpool
The text was updated successfully, but these errors were encountered:
I also got this problem and I can' t run the code
Sorry, something went wrong.
No branches or pull requests
In the forward method of SDnetDecoderBlock, the call to self.unpool can fail if out_block is None.
Code should be changed as such
The text was updated successfully, but these errors were encountered: