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

U-Net architecture: Upsampling path #15

Open
pimakshay opened this issue Aug 23, 2023 · 0 comments
Open

U-Net architecture: Upsampling path #15

pimakshay opened this issue Aug 23, 2023 · 0 comments

Comments

@pimakshay
Copy link

Hi Rosinality.
I was going through the U-Net architecture you implemented for DDPM. I couldn't understand why you have added one extra resnet block in the upsampling path while not including it in the downsampling path (located in the 'model.py' file, specifically at line 346). Could you please clarify the reasoning behind this design choice?

up_layers = []
for i in reversed(range(n_block)):
  for _ in range(n_res_blocks + 1):
     channel_mult = channel * channel_multiplier[i]
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

1 participant