-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathtrain.py
More file actions
329 lines (283 loc) · 10.8 KB
/
train.py
File metadata and controls
329 lines (283 loc) · 10.8 KB
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
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
from __future__ import division
import argparse
import hashlib
import json
import os
import warnings
from pathlib import Path
from typing import Any, Union
import numpy as np
import pytorch_lightning as pl
import torch
from PIL import Image
from siren_pytorch import Siren
from torch import nn
from torch.nn.functional import mse_loss
from torch.utils.data import TensorDataset, DataLoader
from utils.differentiable_clamp import differential_clamp
epoch_end_outputs = None
def save_model(
model: Union[torch.nn.Module, pl.LightningModule],
model_name: str,
input_example: torch.Tensor,
):
print("Saving model...")
file_path = os.path.join("models", f"{model_name}.onnx")
torch.onnx.export(
model,
input_example, # model input (or a tuple for multiple inputs)
file_path, # where to save the model (can be a file or file-like object)
export_params=True, # store the trained parameter weights inside the model file
opset_version=11, # the ONNX version to export the model to
do_constant_folding=True, # whether to execute constant folding for optimization
input_names=["input"], # the model's input names
output_names=["output"], # the model's output names
dynamic_axes={
"input": {0: "batch_size"}, # variable length axes
"output": {0: "batch_size"},
},
)
class SimpleNeuralNetwork(pl.LightningModule):
def __init__(self, height, width):
super().__init__()
self.height = height
self.half_height = self.height / 2
self.width = width
self.half_width = self.width / 2
self.net = nn.Sequential(
Siren(dim_in=2 + one_hot_vector_size, dim_out=args.hidden_nodes),
Siren(dim_in=args.hidden_nodes, dim_out=args.hidden_nodes),
Siren(dim_in=args.hidden_nodes, dim_out=args.hidden_nodes),
Siren(dim_in=args.hidden_nodes, dim_out=args.hidden_nodes),
Siren(dim_in=args.hidden_nodes, dim_out=args.hidden_nodes),
nn.Linear(args.hidden_nodes, 1),
)
def forward(self, inputs):
inputs = torch.clone(inputs)
inputs[:, 0] = inputs[:, 0] / self.half_height
inputs[:, 1] = inputs[:, 1] / self.half_width
inputs[:, 0:2] = 3.14 * (1 - inputs[:, 0:2])
net_output = self.net(inputs)
if self.training:
return differential_clamp(net_output, min_val=0.0, max_val=1.0)
else:
return torch.clamp(net_output, min=0.0, max=1.0)
def training_step(self, batch, batch_idx):
x, y = batch
y_pred = self(x)
pixelwise_loss = mse_loss(y_pred, y)
if half_edge_loss_factor > 0.0:
y_coordinates = x[:, 0].long()
x_coordinates = x[:, 1].long()
x_coords_shifted_left = torch.clamp(x_coordinates - 1, min=0)
y_coords_shifted_up = torch.clamp(y_coordinates - 1, min=0)
image_indexes = torch.argmax(x[:, 2:], dim=1)
x_left_coords = torch.column_stack(
(y_coordinates, x_coords_shifted_left)
).float()
x_left = torch.clone(x)
x_left[:, 0:2] = x_left_coords
x_up_coords = torch.column_stack(
(y_coords_shifted_up, x_coordinates)
).float()
x_up = torch.clone(x)
x_up[:, 0:2] = x_up_coords
y_pred_left = self(x_left)
y_pred_up = self(x_up)
dx_pred = y_pred - y_pred_left
dy_pred = y_pred - y_pred_up
dx_gt = dx_images[image_indexes, y_coordinates, x_coordinates]
dy_gt = dy_images[image_indexes, y_coordinates, x_coordinates]
dx_loss = mse_loss(dx_pred.flatten(), dx_gt)
dy_loss = mse_loss(dy_pred.flatten(), dy_gt)
return (
0.5 * pixelwise_loss
+ half_edge_loss_factor * dx_loss
+ half_edge_loss_factor * dy_loss
)
else:
return pixelwise_loss
def configure_optimizers(self):
optimizer = torch.optim.Adam(self.parameters(), lr=1e-3)
scheduler = torch.optim.lr_scheduler.StepLR(optimizer, step_size=150, gamma=0.5)
return [optimizer], [scheduler]
def training_epoch_end(self, outputs):
# Hacky way of keeping outputs around so SaveCheckpointImages can access them
global epoch_end_outputs
epoch_end_outputs = outputs
class SaveCheckpointImages(pl.Callback):
def __init__(self):
self.last_loss_checkpoint = float("inf")
self.loss_change_threshold = 0.05
def on_train_epoch_end(self, trainer, pl_module: pl.LightningModule) -> None:
global epoch_end_outputs
step_losses = [step["loss"].item() for step in epoch_end_outputs]
avg_loss = np.mean(step_losses)
print("Loss: {:.6f}".format(avg_loss))
loss_change = 1 - avg_loss / self.last_loss_checkpoint
if loss_change > self.loss_change_threshold:
self.last_loss_checkpoint = avg_loss
predicted_pixels = np.zeros(
shape=tensor_y.shape,
dtype=np.float32,
)
with torch.no_grad():
for offset in range(0, tensor_x.shape[0], args.batch_size):
pred = (
pl_module.forward(tensor_x[offset : offset + args.batch_size])
.cpu()
.numpy()
)
predicted_pixels[offset : offset + pred.shape[0]] = pred
predicted_images = predicted_pixels.reshape(
(num_images, img_height, img_width)
)
for img_idx in range(num_images):
output_file_path = os.path.join(
"output",
"{0}_predicted_{1:04d}.png".format(
args.image_filenames[img_idx], trainer.current_epoch
),
)
Image.fromarray(
np.clip(predicted_images[img_idx] * 256, 0, 255).astype(np.uint8)
).save(output_file_path)
if __name__ == "__main__":
arg_parser = argparse.ArgumentParser()
arg_parser.add_argument(
"-i",
dest="image_filenames",
nargs="+",
type=str,
help="File name(s) of input image(s). They are assumed to be in the input_images folder",
default=["keyboard.png"],
)
arg_parser.add_argument(
"--edge-loss-factor",
dest="edge_loss_factor",
type=float,
help="How much should edges (differences between 4-connected neighbour pixels) be weighted",
default=0.0,
)
arg_parser.add_argument(
"--num-epochs",
help="Number of epochs",
dest="num_epochs",
type=int,
default=750,
)
arg_parser.add_argument(
"--batch-size",
dest="batch_size",
help="How many samples should be in each training batch?",
type=int,
default=256,
)
arg_parser.add_argument(
"--hidden-nodes",
dest="hidden_nodes",
help="How many nodes should be in each hidden layer?",
type=int,
default=150,
)
arg_parser.add_argument(
"--use-cuda",
dest="use_cuda",
default=1,
type=int,
help="Use CUDA (GPU) or not?",
)
arg_parser.add_argument(
"--precision",
dest="precision",
default=32,
type=int,
choices=[16, 32],
help="Use fp32 or fp16 (mixed precision)?",
)
args = arg_parser.parse_args()
warnings.filterwarnings(
"ignore",
".*does not have many workers.*",
)
use_cuda = args.use_cuda
if use_cuda and not torch.cuda.is_available():
print("Warning: Trying to use CUDA, but it is not available")
use_cuda = False
device = torch.device("cuda" if use_cuda else "cpu")
half_edge_loss_factor = args.edge_loss_factor / 2
images = []
dx_images = []
dy_images = []
for image_filename in args.image_filenames:
image = np.array(
Image.open(os.path.join("input_images", image_filename)).convert("L")
)
image = np.divide(image, 255.0, dtype=np.float32)
images.append(image)
image_shifted_right = np.copy(image)
image_shifted_right[:, 1:] = image[:, :-1]
image_shifted_down = np.copy(image)
image_shifted_down[1:, :] = image[:-1, :]
dx_gt = image - image_shifted_right
dx_images.append(dx_gt)
dy_gt = image - image_shifted_down
dy_images.append(dy_gt)
del dx_gt, dy_gt
img_height, img_width = images[0].shape
# check that all images have the same dimensions
for image in images:
assert image.shape == images[0].shape
dx_images = torch.from_numpy(np.array(dx_images, dtype=np.float32)).to(device)
dy_images = torch.from_numpy(np.array(dy_images, dtype=np.float32)).to(device)
image_filenames_hash = (
"_".join(Path(filename).stem for filename in args.image_filenames)[0:50]
+ "_"
+ hashlib.md5(json.dumps(args.image_filenames).encode("utf-8")).hexdigest()[:8]
)
num_images = len(images)
one_hot_vector_size = num_images if num_images > 1 else 0
# Prepare dataset
x = []
y = []
image_datasets = []
for k, image in enumerate(images):
image_dataset_x = []
image_dataset_y = []
one_hot_vector = [0.0] * one_hot_vector_size
if one_hot_vector_size >= 1:
one_hot_vector[k] = 1.0
for i in range(img_height):
for j in range(img_width):
vector = [i, j] + one_hot_vector
image_dataset_x.append(vector)
image_dataset_y.append([image[i][j]])
x += image_dataset_x
y += image_dataset_y
image_dataset_x = np.array(image_dataset_x)
image_dataset_y = np.array(image_dataset_y)
image_datasets.append((image_dataset_x, image_dataset_y))
tensor_x = torch.from_numpy(np.array(x, dtype=np.float32)).to(device)
tensor_y = torch.from_numpy(np.array(y, dtype=np.float32)).to(device)
os.makedirs("output", exist_ok=True)
os.makedirs("models", exist_ok=True)
nn = SimpleNeuralNetwork(img_height, img_width)
trainer = pl.Trainer(
max_epochs=args.num_epochs,
enable_checkpointing=False,
logger=False,
callbacks=[SaveCheckpointImages()],
gpus=1 if use_cuda else 0,
precision=args.precision,
accelerator="gpu" if use_cuda else "cpu",
auto_select_gpus=True
)
tensor_dataset = TensorDataset(tensor_x, tensor_y)
train_loader = DataLoader(tensor_dataset, batch_size=args.batch_size, shuffle=True)
# Train
trainer.fit(nn, train_loader)
save_model(
model=nn,
model_name=image_filenames_hash,
input_example=tensor_x[0:128].to(nn.device),
)