xrg
commited on
Commit
·
82f35f5
1
Parent(s):
5708415
fix
Browse files- core/models.py +1 -1
core/models.py
CHANGED
@@ -48,7 +48,7 @@ class LTRFM_NeRF(nn.Module):
|
|
48 |
app_n_comp=opt.app_n_comp,
|
49 |
density_n_comp=opt.density_n_comp,
|
50 |
)
|
51 |
-
|
52 |
aabb = torch.tensor([[-1, -1, -1], [1, 1, 1]]).cuda()
|
53 |
print(aabb.device)
|
54 |
grid_size = torch.tensor([opt.splat_size, opt.splat_size, opt.splat_size]).cuda()
|
|
|
48 |
app_n_comp=opt.app_n_comp,
|
49 |
density_n_comp=opt.density_n_comp,
|
50 |
)
|
51 |
+
|
52 |
aabb = torch.tensor([[-1, -1, -1], [1, 1, 1]]).cuda()
|
53 |
print(aabb.device)
|
54 |
grid_size = torch.tensor([opt.splat_size, opt.splat_size, opt.splat_size]).cuda()
|