Release Inflect-Nano-v1

This commit is contained in:
Owen Song
2026-06-16 19:32:09 +00:00
committed by system
parent d48990f1e9
commit 321c00a999
52 changed files with 135839 additions and 34 deletions
+16
View File
@@ -0,0 +1,16 @@
from numpy import zeros, int32, float32
from torch import from_numpy
from .core import viterbi_decode_kernel
def viterbi_decode(neg_cent, mask):
device = neg_cent.device
dtype = neg_cent.dtype
neg_cent = neg_cent.data.cpu().numpy().astype(float32)
path = zeros(neg_cent.shape, dtype=int32)
t_t_max = mask.sum(1)[:, 0].data.cpu().numpy().astype(int32)
t_s_max = mask.sum(2)[:, 0].data.cpu().numpy().astype(int32)
viterbi_decode_kernel(path, neg_cent, t_t_max, t_s_max)
return from_numpy(path).to(device=device, dtype=dtype)