TL;DR
Monte Carlo (MC) estimators used in diffusion models often incur high computational costs due to their variance. CARV, a compute-aware variance-accounting framework, was developed to optimize these estimators by amortizing expensive computations and employing techniques like importance sampling.
✦ Why It Matters
Engineers can leverage CARV to optimize computational efficiency in machine learning tasks involving diffusion models.
Key Takeaways
How It Works
CARV reduces variance in Monte Carlo estimations by reusing expensive computations across multiple noise samples. It employs a hierarchical MC estimator that combines timestep importance sampling with stratified inverse CDF construction, allowing for efficient resampling of diffusion noise while maintaining accuracy.
Related