Varuzhan
Varuzhan
Hi. I am happy to see that you are trying to create deppspeech 's russian model. But I have a few questions. First of all I want to know what...
What if language grammar allows to put 2 different marks at one word? For example: language allows to put questional mark at any letter of word, and that word is...
` def four_to_one(self, frame): #[ch1,ch2,ch3,ch4||ch1,ch2,ch3,ch4||ch1,ch2,ch3,ch4||ch1,ch2,ch3,ch4] frame = np.frombuffer(frame, np.int16) data = frame.reshape((self.CHANNELS,-1), order='F') b = 1/self.CHANNELS x = np.int16(0) for c in data: x+=c*b frame = (x.astype(np.int16)).tobytes() return frame `...