-
Notifications
You must be signed in to change notification settings - Fork 68
/
models.py
210 lines (185 loc) · 8.77 KB
/
models.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
import argparse
import os
import numpy as np
import math
from floorplan_dataset_maps import FloorplanGraphDataset, floorplan_collate_fn
import torchvision.transforms as transforms
from torchvision.utils import save_image
from torch.utils.data import DataLoader
from torchvision import datasets
from torch.autograd import Variable
import torch.autograd as autograd
import torch.nn as nn
import torch.nn.functional as F
import torch
from PIL import Image, ImageDraw, ImageOps
from utils import combine_images_maps, rectangle_renderer
import torch.nn.utils.spectral_norm as spectral_norm
def add_pool(x, nd_to_sample):
dtype, device = x.dtype, x.device
batch_size = torch.max(nd_to_sample) + 1
pooled_x = torch.zeros(batch_size, x.shape[-1]).float().to(device)
pool_to = nd_to_sample.view(-1, 1).expand_as(x).to(device)
pooled_x = pooled_x.scatter_add(0, pool_to, x)
return pooled_x
def weights_init_normal(m):
classname = m.__class__.__name__
if classname.find("Conv") != -1:
torch.nn.init.normal_(m.weight.data, 0.0, 0.02)
elif classname.find("BatchNorm2d") != -1:
torch.nn.init.normal_(m.weight.data, 1.0, 0.02)
torch.nn.init.constant_(m.bias.data, 0.0)
def compute_gradient_penalty(D, x, x_fake, given_y=None, given_w=None, \
nd_to_sample=None, data_parallel=None, \
ed_to_sample=None):
indices = nd_to_sample, ed_to_sample
batch_size = torch.max(nd_to_sample) + 1
dtype, device = x.dtype, x.device
u = torch.FloatTensor(x.shape[0], 1, 1).to(device)
u.data.resize_(x.shape[0], 1, 1)
u.uniform_(0, 1)
x_both = x.data*u + x_fake.data*(1-u)
x_both = x_both.to(device)
x_both = Variable(x_both, requires_grad=True)
grad_outputs = torch.ones(batch_size, 1).to(device)
if data_parallel:
_output = data_parallel(D, (x_both, given_y, given_w, nd_to_sample), indices)
else:
_output = D(x_both, given_y, given_w, nd_to_sample)
grad = torch.autograd.grad(outputs=_output, inputs=x_both, grad_outputs=grad_outputs, \
retain_graph=True, create_graph=True, only_inputs=True)[0]
gradient_penalty = ((grad.norm(2, 1).norm(2, 1) - 1) ** 2).mean()
return gradient_penalty
def conv_block(in_channels, out_channels, k, s, p, act=None, upsample=False, spec_norm=False):
block = []
if upsample:
if spec_norm:
block.append(spectral_norm(torch.nn.ConvTranspose2d(in_channels, out_channels, \
kernel_size=k, stride=s, \
padding=p, bias=True)))
else:
block.append(torch.nn.ConvTranspose2d(in_channels, out_channels, \
kernel_size=k, stride=s, \
padding=p, bias=True))
else:
if spec_norm:
block.append(spectral_norm(torch.nn.Conv2d(in_channels, out_channels, \
kernel_size=k, stride=s, \
padding=p, bias=True)))
else:
block.append(torch.nn.Conv2d(in_channels, out_channels, \
kernel_size=k, stride=s, \
padding=p, bias=True))
if "leaky" in act:
block.append(torch.nn.LeakyReLU(0.1, inplace=True))
elif "relu" in act:
block.append(torch.nn.ReLU(True))
elif "tanh":
block.append(torch.nn.Tanh())
return block
class CMP(nn.Module):
def __init__(self, in_channels):
super(CMP, self).__init__()
self.in_channels = in_channels
self.encoder = nn.Sequential(
*conv_block(3*in_channels, 2*in_channels, 3, 1, 1, act="leaky"),
*conv_block(2*in_channels, 2*in_channels, 3, 1, 1, act="leaky"),
*conv_block(2*in_channels, in_channels, 3, 1, 1, act="leaky"))
def forward(self, feats, edges=None):
# allocate memory
dtype, device = feats.dtype, feats.device
edges = edges.view(-1, 3)
V, E = feats.size(0), edges.size(0)
pooled_v_pos = torch.zeros(V, feats.shape[-3], feats.shape[-1], feats.shape[-1], dtype=dtype, device=device)
pooled_v_neg = torch.zeros(V, feats.shape[-3], feats.shape[-1], feats.shape[-1], dtype=dtype, device=device)
# pool positive edges
pos_inds = torch.where(edges[:, 1] > 0)
pos_v_src = torch.cat([edges[pos_inds[0], 0], edges[pos_inds[0], 2]]).long()
pos_v_dst = torch.cat([edges[pos_inds[0], 2], edges[pos_inds[0], 0]]).long()
pos_vecs_src = feats[pos_v_src.contiguous()]
pos_v_dst = pos_v_dst.view(-1, 1, 1, 1).expand_as(pos_vecs_src).to(device)
pooled_v_pos = pooled_v_pos.scatter_add(0, pos_v_dst, pos_vecs_src)
# pool negative edges
neg_inds = torch.where(edges[:, 1] < 0)
neg_v_src = torch.cat([edges[neg_inds[0], 0], edges[neg_inds[0], 2]]).long()
neg_v_dst = torch.cat([edges[neg_inds[0], 2], edges[neg_inds[0], 0]]).long()
neg_vecs_src = feats[neg_v_src.contiguous()]
neg_v_dst = neg_v_dst.view(-1, 1, 1, 1).expand_as(neg_vecs_src).to(device)
pooled_v_neg = pooled_v_neg.scatter_add(0, neg_v_dst, neg_vecs_src)
# update nodes features
enc_in = torch.cat([feats, pooled_v_pos, pooled_v_neg], 1)
out = self.encoder(enc_in)
return out
class Generator(nn.Module):
def __init__(self):
super(Generator, self).__init__()
self.init_size = 32 // 4
self.l1 = nn.Sequential(nn.Linear(138, 16 * self.init_size ** 2))
self.upsample_1 = nn.Sequential(*conv_block(16, 16, 4, 2, 1, act="leaky", upsample=True))
self.upsample_2 = nn.Sequential(*conv_block(16, 16, 4, 2, 1, act="leaky", upsample=True))
self.cmp_1 = CMP(in_channels=16)
self.cmp_2 = CMP(in_channels=16)
self.decoder = nn.Sequential(
*conv_block(16, 256, 3, 1, 1, act="leaky"),
*conv_block(256, 128, 3, 1, 1, act="leaky"),
*conv_block(128, 1, 3, 1, 1, act="tanh"))
def forward(self, z, given_y=None, given_w=None):
z = z.view(-1, 128)
# include nodes
if True:
y = given_y.view(-1, 10)
z = torch.cat([z, y], 1)
x = self.l1(z)
x = x.view(-1, 16, self.init_size, self.init_size)
x = self.cmp_1(x, given_w).view(-1, *x.shape[1:])
x = self.upsample_1(x)
x = self.cmp_2(x, given_w).view(-1, *x.shape[1:])
x = self.upsample_2(x)
x = self.decoder(x.view(-1, x.shape[1], *x.shape[2:]))
x = x.view(-1, *x.shape[2:])
return x
class Discriminator(nn.Module):
def __init__(self):
super(Discriminator, self).__init__()
self.encoder = nn.Sequential(
*conv_block(9, 16, 3, 1, 1, act="leaky"),
*conv_block(16, 16, 3, 1, 1, act="leaky"),
*conv_block(16, 16, 3, 1, 1, act="leaky"))
self.l1 = nn.Sequential(nn.Linear(10, 8 * 32 ** 2))
self.cmp_1 = CMP(in_channels=16)
self.downsample_1 = nn.Sequential(*conv_block(16, 16, 3, 2, 1, act="leaky"))
self.cmp_2 = CMP(in_channels=16)
self.downsample_2 = nn.Sequential(*conv_block(16, 16, 3, 2, 1, act="leaky"))
self.decoder = nn.Sequential(
*conv_block(16, 256, 3, 2, 1, act="leaky"),
*conv_block(256, 128, 3, 2, 1, act="leaky"),
*conv_block(128, 128, 3, 2, 1, act="leaky"))
# The height and width of downsampled image
ds_size = 32 // 2 ** 4
self.fc_layer_global = nn.Sequential(nn.Linear(128, 1))
self.fc_layer_local = nn.Sequential(nn.Linear(128, 1))
def forward(self, x, given_y=None, given_w=None, nd_to_sample=None):
x = x.view(-1, 1, 32, 32)
# include nodes
if True:
y = self.l1(given_y)
y = y.view(-1, 8, 32, 32)
x = torch.cat([x, y], 1)
x = self.encoder(x)
x = self.cmp_1(x, given_w).view(-1, *x.shape[1:])
x = self.downsample_1(x)
x = self.cmp_2(x, given_w).view(-1, *x.shape[1:])
x = self.downsample_2(x)
x = self.decoder(x.view(-1, x.shape[1], *x.shape[2:]))
x = x.view(-1, x.shape[1])
# global loss
x_g = add_pool(x, nd_to_sample)
validity_global = self.fc_layer_global(x_g)
# local loss
if False:
x_loc = self.fc_layer_local(x)
validity_local = add_pool(x_loc, nd_to_sample)
validity = validity_global+validity_local
return validity
else:
return validity_global