We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9da0c16 commit 3ce0b41Copy full SHA for 3ce0b41
train.py
@@ -82,7 +82,7 @@ def training(dataset, opt, pipe, testing_iterations, saving_iterations):
82
Ll1 = l1_loss(image, gt_image)
83
loss = (1.0 - opt.lambda_dssim) * Ll1 + opt.lambda_dssim * (1.0 - ssim(image, gt_image))
84
depth_loss = l1_loss(depth, gt_depth) * 0.1
85
- # loss = loss + depth_loss
+ loss = loss + depth_loss
86
loss.backward()
87
88
iter_end.record()
0 commit comments