julius icon indicating copy to clipboard operation
julius copied to clipboard

Open-Source Large Vocabulary Continuous Speech Recognition Engine

Results 106 julius issues
Sort by recently updated
recently updated
newest added

Here is an example. [ 0 1] -4.637433 [] [ 2 38] 2.771251 welcome [welcome] [ 39 53] 2.072704 to [to] [ 54 111] 2.281620 animal [animal] [ 112 175]...

Apple Silicon builds currently fail because this `ifdef` doesn't check for AArch64, and consequently tries to check for x86 extensions that don't exist on ARM. This was the only change...

On my osx 10.15.7 configure/make will produce error below. I've just added ``` #include ``` to `libsent/src/adin/adin_mic_darwin_coreaudio.c` line 54 https://github.com/julius-speech/julius/blob/master/libsent/src/adin/adin_mic_darwin_coreaudio.c#L54 And it fixes error. thanks. ``` % ./configure % make...

Build the latest version of Julius in a Docker container with the following command: ```bash $ docker build -t julius:latest . ``` Creates a 94MB Docker image: ```bash $ docker...

In adintool/mainloop.c, `connect_to_output_device` is declared as: ``` static int connect_to_output_device() ``` Note that the parameters have not been declared. If no parameters are required, it should say `void` between the...

Hi, I am wondering, if HTK-DNN training combined with Julius inference is still a good choice (with respect to performance, speed, usability, ...). There is almost nothing (scripts, comparing WA...

Hi, developers, it seems there are multiple sites using wait conditions in the wrong ways, which could lead to deadlocks. Normally, the wait is checked via a condition to ensure...

Hi, it seems the pointer variable `self->locked` should be guarded by the lock `self->mtx`. However, it seems the `self->locked` is not protected at **Line 489** due to the early lock...

I was trying to install julius on my macbook with M1 chip via homebrew using `brew install --build-from-source julius`, but i got the following error message: ==> Downloading https://github.com/julius-speech/julius/archive/v4.6.tar.gz ==>...

Hi, thank you for sharing source code. Where can I find the julius model train code? Is it possible to train the model with my own additional data? Thanks!