Detailed Reading
Dynamic 3DGS methods often store a canonical Gaussian scene and use a neural deformation field to move every Gaussian at every timestamp. This gives high quality, but it means rendering a frame can require neural inference for an enormous number of primitives. SpeeDe3DGS asks which of those primitives and motion queries are actually necessary over time.
Temporal Sensitivity Pruning measures how much each Gaussian matters across a sequence, not only in one frame. A primitive that barely changes the reconstruction or contributes weakly over time can be removed, reducing both rendering work and memory. This is more appropriate for dynamic scenes than static pruning because contribution may appear only during certain intervals.
Temporal Sensitivity Sampling perturbs timestamps during optimization to improve robustness. Dynamic splat models can create floaters or temporal discontinuities when they overfit exact training times. By sampling around time values, the model is encouraged to behave smoothly and consistently between frames.
GroupFlow is the most conceptually useful idea in the paper. Instead of asking a neural field for a separate deformation for every Gaussian, it clusters primitives with similar trajectories and represents their motion with shared SE(3) transformations. This distills expensive per-primitive deformation into groupwise rigid motion, which is much cheaper to evaluate.
The paper is important because it treats dynamic 3DGS acceleration as both a representation problem and a motion-model problem. Static compression cannot solve the cost of neural deformation by itself. SpeeDe3DGS shows that temporal structure can be exploited to reduce primitives and reduce the number of deformation queries.
The limitation is that grouped motion is an approximation. Non-rigid details, topology changes, or chaotic motion may not fit clean SE(3) clusters, and pruning can remove primitives that matter briefly. The method is still valuable because it gives a modular toolkit that can be integrated into deformable 3DGS pipelines rather than replacing them entirely.