StreamingTransformer icon indicating copy to clipboard operation
StreamingTransformer copied to clipboard

Results 10 StreamingTransformer issues
Sort by recently updated
recently updated
newest added

I run the script in the following command: ./run --stage 2 and the error is: File "~/StreamingTransformer/egs/librispeech/asr1/../../../utils/spm_encode", line 14, in import sentencepiece as spm ImportError: No module named sentencepiece But...

Hello, I run it in follow README, but got the below issue: ` File "/home3/mgd/NNStudy/ASR/StreamingTransformer-master/espnet/asr/pytorch_backend/asr_ddp.py", line 118, in ys_pad = pad_list([torch.from_numpy(y) for y in ys]` I check the asr_ddp.py and...

I have finished training and decoding in AISHELL-1 dataset and got cer=12.4% in test set,and i found that my model.json which uses the default config is different from the one...

In the chunk based streaming stretagy, encoder mask is caculated by method "adaptive_enc_mask". I try to reproduce the mask which is showed as the fig. As the figure shows, the...

I trained model with ta use transformer on aishell1 with encoder left window 15, right window 15, decoder window left 15, right 2. I got better acc on train data....

70 File "/root/anaconda3/lib/python3.7/site-packages/torch/multiprocessing/spawn.py", line 19, in _wrap 71 fn(i, *args) 72 File "/data/app/lilong/StreamingTransformer/espnet/asr/pytorch_backend/asr_ddp.py", line 319, in dist_train 73 train_epoch(train_loader, model, optimizer, epoch, args) 74 File "/data/app/lilong/StreamingTransformer/espnet/asr/pytorch_backend/asr_ddp.py", line 348, in train_epoch...

Any option to decode with CPU? I found that there are many cuda arrays in `streaming_transformer.py`

When the chunk size is 32, the maximum decoding delay should be 1280 ms. Is that right?

In streamin_transformer.py, prefix_recognize looks like frame-synchronize decoding algorithm, and merges chunk decoding and trigger decoding。I try to search papers about chunk transformer and trigger attention, but not found! Can you...

Hello, I trained a streaming transformer with following config, it seams that the loss is OK but the decoding performance is bad. Is it neccesary to use prefix-decoder ? When...