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

Question on BTCV #11

Open
qb02su opened this issue Apr 26, 2023 · 1 comment
Open

Question on BTCV #11

qb02su opened this issue Apr 26, 2023 · 1 comment

Comments

@qb02su
Copy link

qb02su commented Apr 26, 2023

self.embed_model = BasicUNetEncoder(3, 1, 2, [64, 64, 128, 256, 512, 64])
self.model = BasicUNetDe(3, 14, 13, [64, 64, 128, 256, 512, 64]

why the embed_model not be BasicUNetEncoder(3, 1, 13, [64, 64, 128, 256, 512, 64])
2.
why use the resample_img(), and if I run on my own dataset, in which case I should use it.

@920232796
Copy link
Contributor

  1. The third parameter of the embed_model is useless, because embed_model is an encoder which only extract the features of image.
  2. 3D images need to be resampled to the same spacing, and you also need to resize the model's outputs to the original size in the testing phase.

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