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
The figure below shows that the value of a decoder neuron is based on 5 other values:
When trying to reproduce this in the code, I get the following:
The number of tensors is equal to 4 instead of 5. This suggest there is a bug in the code around the following lines:
keras-unet-collection/keras_unet_collection/_model_unet_3plus_2d.py
Lines 142 to 150 in d30f14a
I think the second for loop should have depth_decode+1 as the upper boundary in the range. Is this indeed a bug?
depth_decode+1
The text was updated successfully, but these errors were encountered:
I also noticed that the X1EN can not be copied and crop to the decoder part through multi-scale skip connections each time. I agree with you.
Sorry, something went wrong.
No branches or pull requests
The figure below shows that the value of a decoder neuron is based on 5 other values:
When trying to reproduce this in the code, I get the following:
The number of tensors is equal to 4 instead of 5. This suggest there is a bug in the code around the following lines:
keras-unet-collection/keras_unet_collection/_model_unet_3plus_2d.py
Lines 142 to 150 in d30f14a
I think the second for loop should have
depth_decode+1
as the upper boundary in the range. Is this indeed a bug?The text was updated successfully, but these errors were encountered: