-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
train_grid.py
455 lines (381 loc) · 18.5 KB
/
train_grid.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
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
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
###在动态数据集上加东西 图片一般是(h, w, 3)
from cmath import nan
import imp
import os, sys
from tkinter import image_names
from opt import config_parser
import torch
from collections import defaultdict
import random
from torch.utils.data import DataLoader
from datasets import dataset_dict
import pdb
# models
from models.nerf import *
from models.rendering import render_grid, render_rays, render_rays1, render_rays2
from models.HashSiren import *
# optimizer, scheduler, visualization, NeRV utils
from utils import *
from utils.NeRV import *
import torch.optim as optim
# losses
from losses import loss_dict, MSELoss1
import imageio
# metrics
from metrics import *
from torchvision import transforms
# pytorch-lightning
from pytorch_lightning.callbacks import ModelCheckpoint
from pytorch_lightning import LightningModule, Trainer
from pytorch_lightning.loggers import TestTubeLogger
from pytorch_lightning.callbacks.early_stopping import EarlyStopping
device = torch.device("cuda" if torch.cuda.is_available() else "cpu")
os.environ['CUDA_VISIBLE_DEVICES'] = "0, 1"
# os.environ['CUDA_VISIBLE_DEVICES'] = "1"
class NeRFSystem(LightningModule):
def __init__(self, args):
super(NeRFSystem, self).__init__()
# self.automatic_optimization=False #把自动优化关掉
self.args = args
self.idx = 0
self.idx_gpus = -1
self.loss = loss_dict[args.loss_type]()
self.embedding_xyz = Embedding(3, 10)
self.embedding_dir = Embedding(3, 4) # 4 is the default number
self.embeddings = [self.embedding_xyz, self.embedding_dir]
self.list_log = []
self.img_wh = self.args.img_wh
self.image_shape = torch.zeros(self.img_wh[1], self.img_wh[0], 3)
# self.img_pixel = list(range(0, 480 * 640))
# random.shuffle(self.img_pixel)
if self.args.ckpt_path:
ckpt = torch.load(self.args.ckpt_path)
self.model_HashSiren = HashSiren(hash_mod = True,
hash_table_length = 171*171*139,
in_features = self.args.in_features,
hidden_features = self.args.hidden_features,
hidden_layers = self.args.hidden_layers,
out_features = self.args.out_features,
outermost_linear=True,
first_omega_0=30,
hidden_omega_0=30.0).cuda()
if self.args.ckpt_path:
self.model_HashSiren.load_state_dict(ckpt['model_HashSiren'])
# self.model_HashSiren.table.requires_grad = False
for i in self.model_HashSiren.net.parameters():
i.requires_grad = False
self.models = [self.model_HashSiren]
self.model_MLP_dir = MLP_dir().cuda()
if self.args.ckpt_path:
self.model_MLP_dir.load_state_dict(ckpt['model_MLP_dir'])
for i in self.model_MLP_dir.parameters():
i.requires_grad = False
self.models += [self.model_MLP_dir]
# self.nerf_coarse = NeRF()
# load_ckpt(self.nerf_coarse, args.ckpt_path, model_name='nerf_coarse')
# # self.nerf_coarse.load_state_dict(ckpt_nerf['nerf_coarse_state_dict'])
# self.models = [self.nerf_coarse]
# if args.N_importance > 0:
# self.nerf_fine = NeRF()
# load_ckpt(self.nerf_fine, args.ckpt_path, model_name='nerf_fine')
# # self.nerf_fine.load_state_dict(ckpt_nerf['nerf_fine_state_dict'])
# self.models += [self.nerf_fine]
# self.LatentCode = LatentCode()
# load_ckpt(self.LatentCode, args.ckpt_path, model_name='LatentCode')
# # self.LatentCode.load_state_dict(ckpt_nerf['latent_code'])
# self.models += [self.LatentCode]
# self.t_normalize = 0
# self.flag_image_num = 0
self.flag_epoch1 = 0
# self.flag_epoch2 = 0
self.list_all = list(range(0, 480*640))
self.list_all_1 = self.list_all[:]
random.shuffle(self.list_all_1)
self.val_psnr = []
self.num = 0
def _set_grid_resolution(self, num_voxels, mpi_depth, xyz_max, xyz_min):
# Determine grid resolution
self.num_voxels = num_voxels
self.mpi_depth = mpi_depth
self.xyz_max = xyz_max
self.xyz_min = xyz_min
r = (num_voxels / self.mpi_depth / (self.xyz_max - self.xyz_min)[:2].prod()).sqrt()
self.world_size = torch.zeros(3, dtype=torch.long)
self.world_size[:2] = (self.xyz_max - self.xyz_min)[:2] * r
self.world_size[2] = self.mpi_depth # W,H,D
self.voxel_size_ratio = 256. / mpi_depth
print('world_size: ', self.world_size)
print('voxel_size_ratio:', self.voxel_size_ratio)
def _set_grid_resolution_blender(self, num_voxels, xyz_max, xyz_min):
# Determine grid resolution
self.num_voxels = num_voxels
self.xyz_max = xyz_max
self.xyz_min = xyz_min
self.voxel_size = ((self.xyz_max - self.xyz_min).prod() / num_voxels).pow(1/3)
self.world_size = ((self.xyz_max - self.xyz_min) / self.voxel_size).long()
print('dvgo: voxel_size ', self.voxel_size)
print('dvgo: world_size ', self.world_size)
def decode_batch(self, batch):
# rays = batch['rays'] # (B, 9)
# rgbs = batch['rgbs'] # (B, 3)
# image_t = batch['image_t']
# view = batch['view']
# pixel_choose = batch['pixel_choose']
# image_t = batch['time']
rays = batch['rays'] # (B, 8)
rgbs = batch['rgbs'] # (B, 3)
return rays, rgbs
return rays, rgbs, image_t, view
def unpreprocess(self, data, shape=(1,3,1,1)):
# to unnormalize image for visualization
# data N V C H W
device = data.device
mean = torch.tensor([-0.485 / 0.229, -0.456 / 0.224, -0.406 / 0.225]).view(*shape).to(device)
std = torch.tensor([1 / 0.229, 1 / 0.224, 1 / 0.225]).view(*shape).to(device)
return (data - mean) / std
# def forward(self, rays, t_normalize = 0):
# """Do batched inference on rays using chunk."""
# B = rays.shape[0] #160000
# results = defaultdict(list)
# for i in range(0, B, self.args.chunk):
# rendered_ray_chunks = \
# render_grid(self.models,
# self.embeddings,
# rays[i:i+self.args.chunk], #[32768, 8]
# self.args.N_samples,
# self.args.use_disp,
# self.args.perturb,
# self.args.noise_std,
# self.args.N_importance,
# self.args.chunk, # chunk size is effective in val mode 32768
# self.train_dataset.white_back,
# t_normalize = t_normalize,
# test_time=False
# )
# for k, v in rendered_ray_chunks.items():
# results[k] += [v] #k 'rgb_coarse' v为数值
# for k, v in results.items():
# results[k] = torch.cat(v, 0)
# return results
def forward(self, rays, world_size, grid_bounds):
"""Do batched inference on rays using chunk."""
B = rays.shape[0] #160000
results = defaultdict(list)
for i in range(0, B, self.args.chunk):
rendered_ray_chunks = \
render_grid(self.models,
self.embeddings,
rays[i:i+self.args.chunk], #[32768, 8]
world_size,
grid_bounds,
self.args.N_samples,
self.args.use_disp,
self.args.perturb,
self.args.noise_std,
self.args.N_importance,
self.args.chunk, # chunk size is effective in val mode 32768
self.train_dataset.white_back,
test_time=False
)
for k, v in rendered_ray_chunks.items():
results[k] += [v] #k 'rgb_coarse' v为数值
for k, v in results.items():
results[k] = torch.cat(v, 0)
return results
def prepare_data(self):
dataset = dataset_dict[self.args.dataset_name]
# self.train_dataset = dataset(split='train', **kwargs)
# self.val_dataset = dataset(split='val', **kwargs)
train_dir = val_dir = self.args.root_dir
# self.train_dataset = dataset(root_dir=train_dir, split='train', max_len=-1)
# self.val_dataset = dataset(root_dir=val_dir, split='val', max_len=10)
self.train_dataset = dataset(root_dir=train_dir, split='train', img_wh = self.args.img_wh)
self.xyz_min, self.xyz_max = self.train_dataset.get_box()
self.grid_bounds = [self.xyz_min.cuda(), self.xyz_max.cuda()]
self.val_dataset = dataset(root_dir=val_dir, split='val', img_wh = self.args.img_wh)
def configure_optimizers(self):
self.optimizer = get_optimizer(self.args, self.models)
# self.optimizer = torch.optim.Adam(list(self.model_HashSiren.parameters()), lr=self.args.lr_NeRF,
# weight_decay=self.args.weight_decay)
scheduler = get_scheduler(self.args, self.optimizer)
return [self.optimizer], [scheduler]
def train_dataloader(self):
return DataLoader(self.train_dataset,
shuffle=True,
num_workers=0,
# batch_size=self.args.batch_size,
batch_size=1024,
pin_memory=True)
def val_dataloader(self):
return DataLoader(self.val_dataset,
shuffle=False,
num_workers=0,
batch_size=1, # validate one image (H*W rays) at a time
pin_memory=True)
def training_step(self, batch, batch_nb):
# if self.trainer.current_epoch%300 == 0 and batch_nb== 0:
# random.shuffle(self.img_pixel)
# iter = self.trainer.current_epoch%300
# batch = batch[0]
# log = {'lr1': get_learning_rate(self.optimizer1),
# 'lr2': get_learning_rate(self.optimizer2)}
log = {'lr1': get_learning_rate(self.optimizer)}
rays, rgbs = self.decode_batch(batch)
# flame = batch['flame']
# if self.trainer.current_epoch == 0 and batch_nb== 0:
# self.grid_bounds = batch['grid_bounds']
# self.grid_bounds[0] = self.grid_bounds[0][0]
# self.grid_bounds[1] = self.grid_bounds[1][0]
# xyz_min = self.grid_bounds[0].squeeze()
# xyz_max = self.grid_bounds[1].squeeze()
# self._set_grid_resolution_blender(self.args.num_voxels, xyz_max, xyz_min)
# self.model_HashSiren.HashTable(self.world_size.prod())
# pixel_choose = self.img_pixel[(iter)*1024 : (iter+1)*1024]
# rays = rays.squeeze()[pixel_choose]
# rgbs = rgbs.squeeze()[pixel_choose]
rays = rays.squeeze()
rgbs = rgbs.squeeze()
# output_feature = self.model_HashSiren(rgbs)
# out1 = output_feature[:,:54]
# oyt = self.model_MLP_dir(out1)
# ls = MSELoss1()
# loss = ls(oyt, torch.ones_like(oyt))
results = self(rays, self.world_size, self.grid_bounds)
# print(self.world_size)
# ls = MSELoss1()
# loss = ls(results['rgb_coarse'], torch.ones_like(results['rgb_coarse']))
# loss = ls(results, torch.ones_like(results))
log['train/loss'] = loss = self.loss(results, rgbs)
if torch.any(torch.isnan(loss)):
pdb.set_trace()
print("loss:", self.loss(results, rgbs))
typ = 'fine' if 'rgb_fine' in results else 'coarse'
with torch.no_grad():
psnr_ = psnr(results[f'rgb_{typ}'], rgbs)
log['train/psnr'] = psnr_
self.log('train/loss', loss.item(), prog_bar=True)
self.log('train/psnr', psnr_.item(), prog_bar=True)
return {'loss': loss}
# return {'loss': loss,
# 'progress_bar': {'train/psnr': psnr_},
# 'log': log
# }
def validation_step(self, batch, batch_nb):
# self.idx += 1
# if self.idx == 1:
# self.idx_gpus = 0
# else:
# self.idx_gpus = (self.idx-2)//4 + 1
# # self.idx_gpus = self.idx//8
self.idx += 1
if self.idx == 1:
self.idx_gpus = 0
else:
self.idx_gpus = (self.idx - 2)//8 + 1
if self.trainer.current_epoch == 0 and batch_nb== 0:
self._set_grid_resolution_blender(self.args.num_voxels, self.xyz_max, self.xyz_min)
self.idx_gpus += 1
rays, rgbs = self.decode_batch(batch)
rays = rays.squeeze() # (H*W, 3) [160000, 8]
rgbs = rgbs.squeeze() # (H*W, 3)
# if self.trainer.current_epoch == 0:
# self.grid_bounds = batch['grid_bounds']
# xyz_min = self.grid_bounds[0].squeeze()
# xyz_max = self.grid_bounds[1].squeeze()
# self._set_grid_resolution(self.args.num_voxels, self.args.mpi_depth, xyz_max, xyz_min)
results = self(rays, self.world_size, self.grid_bounds)
# results = self(rays.float())
log = {'val_loss': self.loss(results, rgbs)}
typ = 'fine' if 'rgb_fine' in results else 'coarse'
log['val_psnr'] = psnr(results[f'rgb_{typ}'], rgbs)
# log['psnr_nerv'] = psnr(rgbs_NeRV, rgbs)
# img = results['rgb_coarse'].reshape(400,400,3).permute(2,0,1).cpu()
img = results[f'rgb_{typ}'].reshape(*self.image_shape.shape).permute(2,0,1).cpu()
# img1 = rgbs.reshape(400,400,3).permute(2,0,1).cpu()
img1 = rgbs.reshape(*self.image_shape.shape).permute(2,0,1).cpu()
img1 = img1.unsqueeze(0)
img = img.unsqueeze(0)
# img2 = img2.unsqueeze(0)
img_vis = torch.cat((img1,img),dim=0).permute(2,0,3,1).reshape(img1.shape[2],-1,3).numpy()
os.makedirs(f'/data1/liufengyi/get_results/hash_table/val_img/{self.args.exp_name}/',exist_ok=True)
imageio.imwrite(f'/data1/liufengyi/get_results/hash_table/val_img/{self.args.exp_name}/{self.idx_gpus:02d}_{batch_nb:02d}.png', (img_vis*255).astype('uint8'))
return log
def validation_epoch_end(self, outputs):
self.flag_epoch1 += 1
# self.point_list = self.list_all_1[(self.flag_epoch1 - 1) * 1024 : self.flag_epoch1 * 1024]
mean_loss = torch.stack([x['val_loss'] for x in outputs]).mean()
mean_psnr = torch.stack([x['val_psnr'] for x in outputs]).mean()
# psnr_nerv = torch.stack([x['psnr_nerv'] for x in outputs]).mean()
self.log('val_loss', mean_loss.item(), prog_bar=True)
self.log('val_psnr', mean_psnr.item(), prog_bar=True)
# self.log('psnr_nerv', psnr_nerv.item(), prog_bar=True)
if self.flag_epoch1 < 4:
self.val_psnr += [mean_psnr]
self.save_ckpt(mean_psnr, self.flag_epoch1)
else:
min_psnr = min(self.val_psnr)
if mean_psnr > min_psnr :
idx = self.val_psnr.index(min_psnr)
self.val_psnr[idx] = mean_psnr
self.save_ckpt(mean_psnr, idx)
return
def save_ckpt(self, psnr, name='final'):
save_dir = f'/data1/liufengyi/get_results/hash_table/checkpoints/{self.args.exp_name}/ckpts/'
os.makedirs(save_dir, exist_ok=True)
path = f'{save_dir}/HashTable_{name}.tar'
ckpt = {
'val_PSNR' : psnr,
'model_HashSiren' :self.models[0].state_dict(),
'model_MLP_dir' :self.models[1].state_dict()}
torch.save(ckpt, path)
print('Saved checkpoints at', path)
if __name__ == '__main__':
with torch.cuda.device(1):
args = config_parser()
system = NeRFSystem(args)
a = os.path.join(f'/data1/liufengyi/get_results/hash_table/checkpoints/{args.exp_name}/ckpts/','{epoch:02d}')
dirpath = f'/data1/liufengyi/get_results/hash_table/checkpoints/{args.exp_name}/ckpts/'
# filename = '{epoch:02d}'
filename = '{epoch:02d}-{val_loss:.3f}'
# early_stop_callback = (
# EarlyStopping(
# monitor = 'val/loss_mean',
# patience = 15,
# mode = 'min')
# )
# checkpoint_callback = ModelCheckpoint(dirpath = dirpath,
# filename = filename,
# monitor='val_psnr',
# mode='max',
# save_top_k=5,)
# auto_insert_metric_name=False)
logger = TestTubeLogger(
save_dir="/data1/liufengyi/get_results/hash_table/logs",
name=args.exp_name,
debug=False,
create_git_tag=False
)
trainer = Trainer(max_epochs=args.num_epochs,
# automatic_optimization = False,
# checkpoint_callback=checkpoint_callback,
# callbacks=[checkpoint_callback, early_stop_callback],
# callbacks=[checkpoint_callback],
# resume_from_checkpoint=args.ckpt_path,
logger=logger,
# early_stop_callback=None,
weights_summary=None,
progress_bar_refresh_rate=1,
# gpus=args.num_gpus,
gpus=[1],
distributed_backend='ddp' if args.num_gpus>1 else None,
num_sanity_val_steps = 1, #训练之前进行校验
check_val_every_n_epoch = 1, #一个epoch校验一次
# val_check_interval=0.1, #0.1个epoch校验一次
precision=16,
benchmark=True,
log_every_n_steps = 50,) #每隔1次迭代记录一下logger
# profiler=args.num_gpus==1)
# pdb.set_trace()
trainer.fit(system)
system.save_ckpt(psnr = 0)
torch.cuda.empty_cache()