SyntaSpeech / utils /metrics /laplace_var.py
yerfor's picture
init
22871e7
raw
history blame
84 Bytes
import scipy.ndimage
def laplace_var(x):
return scipy.ndimage.laplace(x).var()