From ab6d668c51ac6defade2d9c82b92b17cf587413b Mon Sep 17 00:00:00 2001 From: bkerbl Date: Sat, 15 Jul 2023 11:12:25 +0200 Subject: [PATCH] Rolling back fixed spatial lr --- scene/gaussian_model.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scene/gaussian_model.py b/scene/gaussian_model.py index d3a5bad..56f1839 100644 --- a/scene/gaussian_model.py +++ b/scene/gaussian_model.py @@ -122,7 +122,7 @@ class GaussianModel: self.active_sh_degree += 1 def create_from_pcd(self, pcd : BasicPointCloud, spatial_lr_scale : float): - self.spatial_lr_scale = 5 + self.spatial_lr_scale = spatial_lr_scale fused_point_cloud = torch.tensor(np.asarray(pcd.points)).float().cuda() fused_color = RGB2SH(torch.tensor(np.asarray(pcd.colors)).float().cuda()) features = torch.zeros((fused_color.shape[0], 3, (self.max_sh_degree + 1) ** 2)).float().cuda()