Danijel Koržinek
Danijel Koržinek
Don't feel like making a pull requesrt for a single line of code. In scripts/internal/pocolm_common.py:55, `CalledProcessError` is used without being properly imported. This error occurs only if subprocess.check_output fails. Solution:...
Given that you compute formant frequencies, it would be neat to implement methods that automatically calculate the VSA and VAI parameters, eg [like in this paper](https://journals.plos.org/plosone/article?id=10.1371/journal.pone.0032132). [This project](https://drammock.github.io/phonR/) also talks...
Alive?
@AdolfVonKleist Are you still interested in developing this project? I've finally forced myself and made a web-based Phonetisaurus model training tool: https://github.com/danijel3/PhonetisaurusWebApp During this, I've also managed to set up...
This piece of code causes a crash when compiled in Visual Studio C++: https://github.com/AdolfVonKleist/Phonetisaurus/blob/f08d3dfb10b8d619e665a9581d2a327bcc2504f7/src/include/PhonetisaurusRex.h#L117 Interestingly, it seems to work under Linux. In any case, this is a little iffy approach,...
Tested using Docker. This version of Dockerfile works: ``` FROM python:3.10 RUN pip install -U pip && pip install kenlm ``` And this fails: ``` FROM python:3.11 RUN pip install...
Not sure if something hasn't changed recently, but seems something isn't letting cudadecoder compile properly: ``` /usr/local/cuda/bin/nvcc -c cuda-decoder-kernels.cu -o cuda-decoder-kernels.o -I/usr/local/cuda/include -I/opt/kaldi/tools/cub-1.8.0 -I.. -isystem /opt/kaldi/tools/openfst-1.7.2/include --compiler-options -fPIC --machine 64...
Solution to issue #4961
Just a wanted to point out that Phonetisaurus stopped compiling with the newest version of OpenFST. That means that the script `${KALDI_ROOT}/tools/extras/intall_phonetisaurus.sh` is no longer functional. The reason for this...
Most of the world has moved to version 1.8.3 of OpenFST. I made some cosmetic changes to allow the project to compile correctly. Note, there are still a ton of...
### Is your feature request related to a problem? Please describe the problem. As outlined in this issue: https://github.com/Azure/azure-sdk-for-python/issues/42898 Given this example code: ```python token_cache_options = TokenCachePersistenceOptions(name="MyApp") if Path("cred.json").exists(): with...