f4d6d3ccb846d555ba7dd3cb7488f5f4e9f1f3b9,networks.py,,unet,#Any#Any#Any#Any#Any#,283
Before Change
skips = [x5,x4,x3,x2,x0]
for i in xrange(5):
x = UpSampling2D()(x)
x = concatenate([x,skips[i]])
x = myConv(x,nf_dec[i],dropout=(do_dropout and (i<2)))
return x
After Change
x = myConv(x6,nf_enc[10])
skips = [x5,x4,x3,x2,x0]
skip_nf = [nf_enc[8],nf_enc[6],nf_enc[4],nf_enc[2],nf_enc[0]]
for i in xrange(5):
x = UpSampling2D()(x)
nf = min(128,skip_nf[i])
x_skip = myConv(skips[i],nf)
x_skip = myConv(x_skip,nf)
x = concatenate([x,x_skip])
x = myConv(x,nf_dec[i])
In pattern: SUPERPATTERN
Frequency: 3
Non-data size: 5
Instances Project Name: balakg/posewarp-cvpr2018
Commit Name: f4d6d3ccb846d555ba7dd3cb7488f5f4e9f1f3b9
Time: 2017-07-27
Author: balakg@thousandeyes.csail.mit.edu
File Name: networks.py
Class Name:
Method Name: unet
Project Name: balakg/posewarp-cvpr2018
Commit Name: f59ea8c2fe93428e088fdc3e3bc0bfe4985f2158
Time: 2017-07-19
Author: balakg@thousandeyes.csail.mit.edu
File Name: networks.py
Class Name:
Method Name: discriminator
Project Name: balakg/posewarp-cvpr2018
Commit Name: 20309f3b9e17e321737400bde8e81e84d14eea79
Time: 2017-06-20
Author: balakg@thousandeyes.csail.mit.edu
File Name: networks.py
Class Name:
Method Name: discriminator