Abhinav M Kulkarni

Results 52 comments of Abhinav M Kulkarni

Yes, I can confirm that I am not getting any events in the `onSeekComplete` stream, however I do in the other streams. This is on the web, haven't checked on...

Thanks, I seem to be having the same problem while linking entities and mentioned across different sentences. ```python import spacy import neuralcoref from spacy import display nlp = spacy.load("en_core_web_lg") neuralcoref.add_to_pipe(nlp,...

@hieuhv94: I had the same problem a while ago and I am not quite sure how I fixed it (or whether I fixed it), but are you reading the file...

@hieuhv94: Sorry, I meant the transcription file (rather than the audio file). But yeah, that's unlikely to be the cause behind the missing transcription. Can you please verify that your...

@kerolos: As @tlikhomanenko pointed out in the previous comments, the underscore character "`_`" denotes that the token starts a new word. Think about a prefix "`ed`". Lots of words start...

> to proper use Lexicon free you need to use wp LM @tlikhomanenko: Is there any example of a recipe to create wp LM from LibriSpeech corpus? In the [Lexicon-free...

Thanks @tlikhomanenko. I ran the `prepare_wp_data.py` script and I got tokenized train, dev-clean and dev-other files in the `$W2LDIR/decoder` directory: ```bash w2luser@w2luser-MS-7A40:~$ ls $W2LDIR/decoder/ -1 lm_wp_10k.dev-clean lm_wp_10k.dev-other lm_wp_10k.train ``` I...

@tlikhomanenko: It looks to me that Lexicon free decoder is not possible to use for streaming convnets because those use KenLM (link [here](https://github.com/facebookresearch/wav2letter/blob/v0.2/inference/inference/decoder/Decoder.cpp#L64-L71)) and currently KenLM wouldn't work without a...

@tlikhomanenko: I created a dummy lexicon file as follows: ```bash w2luser@w2luser-ThinkPad-X1-Carbon-6th:/data/podcaster/model/wav2letter$ head lexicon-dummy.txt _the _the _and _and _of _of _to _to _a _a s s _in _in _i _i _he...

@tlikhomanenko: I am deliberately hardcoding [lexicon file path](https://github.com/facebookresearch/wav2letter/blob/v0.2/inference/inference/examples/InteractiveStreamingASRExample.cpp#L221) in `DecoderFactory` to an empty string, which causes `DecoderFactory` [to create an empty](https://github.com/facebookresearch/wav2letter/blob/v0.2/inference/inference/decoder/Decoder.cpp#L74) `trie_`, thus forcing the `DecoderFactory` to [return an instance](https://github.com/facebookresearch/wav2letter/blob/v0.2/inference/inference/decoder/Decoder.cpp#L97-L107)...