Skip to content

Commit

Permalink
Critical ivector bugfix and version 0.3.15
Browse files Browse the repository at this point in the history
  • Loading branch information
nshmyrev committed Oct 12, 2020
1 parent 7af3e9a commit 0269a10
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ plugins {
}

def archiveName = "vosk-android"
def libVersion = "0.3.13"
def libVersion = "0.3.15"

allprojects {
repositories {
Expand Down
2 changes: 1 addition & 1 deletion nodejs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vosk",
"version": "0.3.8",
"version": "0.3.15",
"description": "Node binding for continuous offline voice recoginition with Vosk library.",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ def run(self):

setuptools.setup(
name="vosk",
version="0.3.14",
version="0.3.15",
author="Alpha Cephei Inc",
author_email="[email protected]",
description="Offline open source speech recognition API based on Kaldi and Vosk",
Expand Down
2 changes: 2 additions & 0 deletions src/model.cc
Original file line number Diff line number Diff line change
Expand Up @@ -225,6 +225,8 @@ void Model::ReadDataFiles()
ivector_extraction_opts.global_cmvn_stats_rxfilename = model_path_str_ + "/ivector/global_cmvn.stats";
ivector_extraction_opts.diag_ubm_rxfilename = model_path_str_ + "/ivector/final.dubm";
ivector_extraction_opts.ivector_extractor_rxfilename = model_path_str_ + "/ivector/final.ie";
ivector_extraction_opts.max_count = 100;

feature_info_.use_ivectors = true;
feature_info_.ivector_extractor_info.Init(ivector_extraction_opts);
} else {
Expand Down
2 changes: 1 addition & 1 deletion travis/Dockerfile.dockcross
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ RUN cd /opt \
&& cd kaldi/tools \
&& git clone -b v0.3.7 --single-branch https://github.com/xianyi/OpenBLAS \
&& make PREFIX=$(pwd)/OpenBLAS/install TARGET="${OPENBLAS_ARCH}" HOSTCC=gcc USE_LOCKING=1 USE_THREAD=0 -C OpenBLAS all install \
&& git clone https://github.com/alphacep/openfst openfst \
&& git clone -b old-gcc --single-branch https://github.com/alphacep/openfst openfst \
&& cd openfst \
&& autoreconf -i \
&& ./configure --prefix=/opt/kaldi/tools/openfst --enable-static --enable-shared --enable-far --enable-ngram-fsts --enable-lookahead-fsts --with-pic --disable-bin --host=${CROSS_TRIPLE} --build=x86-linux-gnu \
Expand Down

0 comments on commit 0269a10

Please sign in to comment.