optimized_transducer icon indicating copy to clipboard operation
optimized_transducer copied to clipboard

Memory efficient transducer loss computation

Results 4 optimized_transducer issues
Sort by recently updated
recently updated
newest added

I guess your modified transducer is actually the monotonic transduscer in [Monotonic Recurrent Neural Network Transducer and Decoding Strategies](https://ieeexplore.ieee.org/document/9003822), rather than neural recurrent aligner. Neural recurrent aligner has no separate...

The formular for gradient is below in` warprnnt_numba` and `warp_transducer cpu`: ``` T, U, _ = log_probs.shape grads = np.full(log_probs.shape, -float("inf")) log_like = betas[0, 0] # == alphas[T - 1,...

1) CUDA_cublas_LIBRARY not found error when compiling ,my cuda version 10.2 2) /usr/include/c++/7/bits/basic_string.tcc(1067): error: expression must have pointer type detected during: instantiation of "std::basic_string::_Rep *std::basic_string::_Rep::_S_create(std::basic_string::size_type, std::basic_string::size_type, const _Alloc &) [with...

thanks very much for your great project! I have two questions to ask: 1. how big is the the transducer loss for a well performed model? or the model is...