SD-GS: Structured Deformable 3D Gaussians for Efficient Dynamic Scene Reconstruction
Paper • 2507.07465 • Published
Part of the ANIMA Perception Suite by Robot Flow Labs.
SD-GS: Structured Deformable 3D Gaussians for Efficient Dynamic Scene Reconstruction Wei Yao, Shuzhao Xie, Letian Li, Weixiang Zhang, Zhixin Lai, Shiqi Dai, Ke Zhang, Zhi Wang arXiv:2507.07465 (Jul 2025)
MUNINN implements a hierarchical deformable anchor grid for 4D Gaussian Splatting:
Key results: 60% model size reduction, 100% FPS improvement over dense 4DGS, maintained visual quality.
| Scene | val_loss | Format Sizes |
|---|---|---|
| bouncingballs | 0.449 | pth: 40MB, ONNX: 7.7MB, TRT: 7.7MB |
| trex | 0.459 | pth: 40MB, ONNX: 7.7MB, TRT: 7.7MB |
| hook | 0.469 | pth: 40MB, ONNX: 7.7MB, TRT: 7.7MB |
| mutant | 0.470 | pth: 40MB, ONNX: 7.7MB, TRT: 7.7MB |
| lego | 0.471 | pth: 40MB, ONNX: 7.7MB, TRT: 7.7MB |
| jumpingjacks | 0.475 | pth: 40MB, ONNX: 7.7MB, TRT: 7.7MB |
| standup | 0.475 | pth: 40MB, ONNX: 7.7MB, TRT: 7.7MB |
| hellwarrior | 0.487 | pth: 40MB, ONNX: 7.7MB, TRT: 7.7MB |
| Format | File Pattern | Use Case |
|---|---|---|
| PyTorch (.pth) | pytorch/muninn_{scene}_v1.pth |
Training, fine-tuning |
| SafeTensors | pytorch/muninn_{scene}_v1.safetensors |
Fast loading, safe |
| ONNX | onnx/muninn_{scene}_v1.onnx |
Cross-platform inference |
| TensorRT FP16 | tensorrt/muninn_{scene}_v1_fp16.trt |
Edge deployment (Jetson/L4) |
| TensorRT FP32 | tensorrt/muninn_{scene}_v1_fp32.trt |
Full precision inference |
import torch
from anima_muninn.core.model import MuninModel
# Load from SafeTensors
from safetensors.torch import load_file
state = load_file("pytorch/muninn_hellwarrior_v1.safetensors")
model = MuninModel(bbox=(...), grid_size=48, ...)
model.load_state_dict(state)
model.eval()
# Render a frame
output = model(poses, intrinsics, times)
rendered_image = output["rendered"] # (B, 3, 800, 800)
configs/dnerf.tomlApache 2.0 -- Robot Flow Labs / AIFLOW LABS LIMITED