Spanish Speech To Text: n_context meaning?

Hi! I am starting to use deep speech to train models for Spanish language.

I make some changes like the number of character to include ‘ñ’, but there is another parameter that I don’t know his meaning. This is the n_context, so what’s the meaning of this parameter and how affect in the model?

Thanks in advance.

As you can read in https://github.com/mozilla/DeepSpeech/blob/93393ddca3775f3f03a5c2d637e1824ac37cfec9/DeepSpeech.py#L257-L259 this is the number of frames to use to build the context, i.e. sound before and after the current one. The current value is 9, as in the original Baidu’s DeepSpeech paper. It’s unlikely you have to change this value.

Alright, Thank so much Lissyx