Skip to content
Snippets Groups Projects
Commit af3e110d authored by Tobias Seibel's avatar Tobias Seibel
Browse files

storing imagetensor and normalized images

parent 1b7f595b
No related branches found
No related tags found
No related merge requests found
......@@ -69,7 +69,7 @@ class UNet_Res(nn.Module):
# first two conv layers
x = self.first_conv(input) + t_emb0[:,:,None,None]
#timemb
skip1 =x
skip1,x = self.down1(x,t_emb1)
skip2,x = self.down2(x,t_emb2)
skip3,x = self.down3(x,t_emb3)
......@@ -238,3 +238,5 @@ class MidBlock_Res(nn.Module):
x = self.convblock1(x,t)
return self.convblock2(x,t)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment