def process_xstart()

in point_e/diffusion/gaussian_diffusion.py [0:0]


        def process_xstart(x):
            if denoised_fn is not None:
                x = denoised_fn(x)
            if clip_denoised:
                return x.clamp(-1, 1)
            return x