sonisphere / mmaudio /model /utils /sample_utils.py
Phil Sobrepena
initial commit
73ed896
raw
history blame
361 Bytes
from typing import Optional
import torch
def log_normal_sample(x: torch.Tensor,
generator: Optional[torch.Generator] = None,
m: float = 0.0,
s: float = 1.0) -> torch.Tensor:
bs = x.shape[0]
s = torch.randn(bs, device=x.device, generator=generator) * s + m
return torch.sigmoid(s)