你好!我发现在训练流程中的
if iteration > opt.pruning_from_iter and iteration % opt.pruning_interval == 0 : # and gaussians.get_xyz.shape[0] > 200000:
size_threshold = 20 if iteration > opt.opacity_reset_interval else None
gaussians.prune(densify_threshold, opacity_threshold, scene.cameras_extent, size_threshold, iteration)
这一步的剪枝实际上是没有执行的,因为opacity_reset_interval = 60000,是特意如此设计的吗?为什么?
你好!我发现在训练流程中的
这一步的剪枝实际上是没有执行的,因为opacity_reset_interval = 60000,是特意如此设计的吗?为什么?