-
Notifications
You must be signed in to change notification settings - Fork 200
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
Concatenation operation in InputTransition #1
Comments
Sorry, for the delay. The dimensions are BatchSize, Channels, Z, Y, X. The point is to create 16 channels, not to increase the batch size by 16x. |
In the meanwhile, the x's channel number is changed via conv1, so that it needs to save the original input(whose channel number is 1), namely split input in to 16 channels
|
Thx very much for the apply! |
If my understanding is right, the concatenation in the
InputTransition
block should be applied alongdim=1
instead ofdim=0
, because the second dimension is channel. i.e.should be
The text was updated successfully, but these errors were encountered: