Ilya Platonov

Results 16 comments of Ilya Platonov

I have the same problem on Ubuntu 20.04, looks like this code does not completely write file: ``` InputStream wheelApiResource = ProbeVenvInfoAction.class.getClassLoader() .getResourceAsStream("templates/wheel-api.py"); byte[] buffer = new byte[wheelApiResource.available()]; wheelApiResource.read(buffer); File...

Ok, I think I found two solutions to this problem: First is to use JDK8, problem does not occur there. Another one patching ./pygradle-plugin/src/main/groovy/com/linkedin/gradle/python/tasks/action/ProbeVenvInfoAction.java with following code: ``` private static...

I will merge it if someone will validate that it is working.

It is very hard to change language model of this model. Almost next to impossible. Best thing you can try to do is to get n-best result and rescore it...

Do not use this old lib. Use dialogflow cloud library. On Thu, Oct 10, 2019, 19:42 Kimi wrote: > Dear Google: > I noticed that Dialogflow client library and Dialogflow...

You should be able to use this Java library to build for Android https://cloud.google.com/dialogflow/docs/reference/libraries/java But it is quite different from this old one. On Thu, Oct 10, 2019 at 8:32...

As far I know kaldi is not 8khz friendly and recommendation is always to do 8->16Khz transformation before decoding. If you want to work with 8Khz you have to ask...

Javascript code downsamples browser input to 16000 https://github.com/dialogflow/asr-server/blob/master/asr-html/res/recorderWorker.js#L70

- Ensure browser records data correctly, I believe there is a way to import recorded stream. - Use Chrome Developer Console to debug javascript. - I do not remember if...

You can transform json format into anything you want. For instance you can use curl + https://stedolan.github.io/jq/ and extract text out of json. No you can not stop server, it...