$ make
The version of configure script matches kaldi.mk version. Good.
test -d || mkdir
make -C base
make[1]: Entering directory '/cygdrive/i/Kaldi/kaldi-master/src/base'
g++ -msse -msse2 -Wall -I.. -DKALDI_DOUBLEPRECISION=0 -DHAVE_CLAPACK -I ../../tools/CLAPACK/ -Wno-sign-compare -Wno-unused-local-typedefs -Winit-self -I ../../tools/CLAPACK/ -I /cygdrive/i/Kaldi/kaldi-master/tools/openfst/include -DHAVE_OPENFST_GE_10400 -std=c++0x -g -c -o kaldi-math.o kaldi-math.cc
kaldi-math.cc: In function ‘int kaldi::Rand(kaldi::RandomState*)’:
kaldi-math.cc:51:33: error: ‘rand_r’ was not declared in this scope
return rand_r(&(state->seed));
^
<builtin>: recipe for target 'kaldi-math.o' failed
make[1]: *** [kaldi-math.o] Error 1
make[1]: Leaving directory '/cygdrive/i/Kaldi/kaldi-master/src/base'
Makefile:137: recipe for target 'base' failed
make: *** [base] Error 2
$ shell uname -o
-bash: shell: ukaza ni mogoče najti
Robi@Robi-i7 /cygdrive/i/Kaldi/kaldi-master/src
$ uname -o
Cygwin
$ make
The version of configure script matches kaldi.mk version. Good.
test -d || mkdir
make -C base
make[1]: Entering directory '/cygdrive/i/Kaldi/kaldi-master/src/base'
g++ -msse -msse2 -Wall -I.. -DKALDI_DOUBLEPRECISION=0 -DHAVE_CLAPACK -I ../../tools/CLAPACK/ -Wno-sign-compare -Wno-unused-local-typedefs -Winit-self -I ../../tools/CLAPACK/ -I /cygdrive/i/Kaldi/kaldi-master/tools/openfst/include -DHAVE_OPENFST_GE_10400 -std=c++0x -g -c -o kaldi-math.o kaldi-math.cc
kaldi-math.cc: In function ‘int kaldi::Rand(kaldi::RandomState*)’:
kaldi-math.cc:50:33: error: ‘rand_r’ was not declared in this scope
return rand_r(&(state->seed));
^
<builtin>: recipe for target 'kaldi-math.o' failed
make[1]: *** [kaldi-math.o] Error 1
make[1]: Leaving directory '/cygdrive/i/Kaldi/kaldi-master/src/base'
Makefile:137: recipe for target 'base' failed
make: *** [base] Error 2
jtrmal@login3 /export/a09/jtrmal/kaldi-clean-git/src [(de32102...)] $ cat test_defs.cc
#include <stdlib.h>
#include <stdio.h>
int main() {
#if _POSIX_C_SOURCE >= 1
printf("_POSIX_C_SOURCE defined\n");
#endif
#if _XOPEN_SOURCE
printf("_XOPEN_SOURCE defined\n");
#endif
#if _POSIX_SOURCE
printf("_POSIX_SOURCE defined\n");
#endif
return 0;
}
jtrmal@login3 /export/a09/jtrmal/kaldi-clean-git/src [(de32102...)] $ g++ test_defs.cc -o test_defs
jtrmal@login3 /export/a09/jtrmal/kaldi-clean-git/src [(de32102...)] $ ./test_defs
_POSIX_C_SOURCE defined
_XOPEN_SOURCE defined
_POSIX_SOURCE defined
#include "base/kaldi-math.h"
//#ifndef _MSC_VER
//#include <pthread.h>
//#endif
#ifndef _MSC_VER
#include <pthread.h>
#define _POSIX_C_SOURCE 1
#include <stdlib.h>
#endif
#include <string>$ make
The version of configure script matches kaldi.mk version. Good.
test -d || mkdir
make -C base
make[1]: Entering directory '/cygdrive/i/Kaldi/kaldi-master/src/base'
g++ -msse -msse2 -Wall -I.. -DKALDI_DOUBLEPRECISION=0 -DHAVE_CLAPACK -I ../../tools/CLAPACK/ -Wno-sign-compare -Wno-unused-local-typedefs -Winit-self -I ../../tools/CLAPACK/ -I /cygdrive/i/Kaldi/kaldi-master/tools/openfst/include -DHAVE_OPENFST_GE_10400 -std=c++0x -g -c -o kaldi-math.o kaldi-math.cc
kaldi-math.cc: In function ‘int kaldi::Rand(kaldi::RandomState*)’:
kaldi-math.cc:58:33: error: ‘rand_r’ was not declared in this scope
return rand_r(&(state->seed));
^
<builtin>: recipe for target 'kaldi-math.o' failed
make[1]: *** [kaldi-math.o] Error 1
make[1]: Leaving directory '/cygdrive/i/Kaldi/kaldi-master/src/base'
Makefile:137: recipe for target 'base' failed
make: *** [base] Error 2
$ gcc --version
gcc (GCC) 5.3.0
Copyright (C) 2015 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.$ which gcc
/usr/bin/gcc45 int Rand(struct RandomState* state) {
46 #ifdef _WIN32
47 // On Windows, just call Rand()
48 return rand();
49 #else
50 if (state) {
51 return rand_r(&(state->seed));
52 } else {
53 int rs = pthread_mutex_lock(&_RandMutex);
54 KALDI_ASSERT(rs == 0);
55 int val = rand();
56 rs = pthread_mutex_unlock(&_RandMutex);
57 KALDI_ASSERT(rs == 0);
58 return val;
59 }
60 #endif
61 }
#if defined (_MSC_VER)|| defined (__CYGWIN__)
//#ifdef _MSC_VER
$ make
The version of configure script matches kaldi.mk version. Good.
test -d || mkdir
make -C base
make[1]: Entering directory '/cygdrive/i/Kaldi/kaldi-master/src/base'
make[1]: Nothing to be done for 'all'.
make[1]: Leaving directory '/cygdrive/i/Kaldi/kaldi-master/src/base'
make -C matrix
make[1]: Entering directory '/cygdrive/i/Kaldi/kaldi-master/src/matrix'
g++ -msse -msse2 -Wall -I.. -DKALDI_DOUBLEPRECISION=0 -DHAVE_CLAPACK -I ../../tools/CLAPACK/ -Wno-sign-compare -Wno-unused-local-typedefs -Winit-self -I ../../tools/CLAPACK/ -I /cygdrive/i/Kaldi/kaldi-master/tools/openfst/include -DHAVE_OPENFST_GE_10400 -std=c++0x -g -c -o kaldi-matrix.o kaldi-matrix.cc
In file included from ../base/kaldi-common.h:34:0,
from ../matrix/matrix-common.h:26,
from ../matrix/kaldi-matrix.h:25,
from kaldi-matrix.cc:23:
kaldi-matrix.cc: In member function ‘void kaldi::MatrixBase<Real>::Invert(Real*, Real*, bool)’:
../base/kaldi-utils.h:55:43: error: there are no arguments to ‘posix_memalign’ that depend on a template parameter, so a declaration of ‘posix_memalign’ must be available [-fpermissive]
(!posix_memalign(pp_orig, align, size) ? *(pp_orig) : NULL)
^
kaldi-matrix.cc:51:11: note: in expansion of macro ‘KALDI_MEMALIGN’
KALDI_MEMALIGN(16, sizeof(Real)*l_work, &temp))) == NULL)
^
../base/kaldi-utils.h:55:43: note: (if you use ‘-fpermissive’, G++ will accept your code, but allowing the use of an undeclared name is deprecated)
(!posix_memalign(pp_orig, align, size) ? *(pp_orig) : NULL)
^
kaldi-matrix.cc:51:11: note: in expansion of macro ‘KALDI_MEMALIGN’
KALDI_MEMALIGN(16, sizeof(Real)*l_work, &temp))) == NULL)
^
kaldi-matrix.cc: In member function ‘void kaldi::MatrixBase<Real>::LapackGesvd(kaldi::VectorBase<Real>*, kaldi::MatrixBase<Real>*, kaldi::MatrixBase<Real>*)’:
../base/kaldi-utils.h:55:43: error: there are no arguments to ‘posix_memalign’ that depend on a template parameter, so a declaration of ‘posix_memalign’ must be available [-fpermissive]
(!posix_memalign(pp_orig, align, size) ? *(pp_orig) : NULL)
^
kaldi-matrix.cc:566:11: note: in expansion of macro ‘KALDI_MEMALIGN’
KALDI_MEMALIGN(16, sizeof(Real)*l_work, &temp))) == NULL)
^
kaldi-matrix.cc: In member function ‘void kaldi::Matrix<Real>::Init(kaldi::MatrixIndexT, kaldi::MatrixIndexT, kaldi::MatrixStrideType)’:
../base/kaldi-utils.h:55:43: error: there are no arguments to ‘posix_memalign’ that depend on a template parameter, so a declaration of ‘posix_memalign’ must be available [-fpermissive]
(!posix_memalign(pp_orig, align, size) ? *(pp_orig) : NULL)
^
kaldi-matrix.cc:658:23: note: in expansion of macro ‘KALDI_MEMALIGN’
if (NULL != (data = KALDI_MEMALIGN(16, size, &temp))) {
^
kaldi-matrix.cc: In member function ‘void kaldi::Matrix<Real>::Read(std::istream&, bool, bool)’:
kaldi-matrix.cc:1413:49: error: there are no arguments to ‘strcasecmp’ that depend on a template parameter, so a declaration of ‘strcasecmp’ must be available [-fpermissive]
if (!KALDI_STRCASECMP(str.c_str(), "inf") ||
^
kaldi-matrix.cc:1414:54: error: there are no arguments to ‘strcasecmp’ that depend on a template parameter, so a declaration of ‘strcasecmp’ must be available [-fpermissive]
!KALDI_STRCASECMP(str.c_str(), "infinity")) {
^
kaldi-matrix.cc:1417:56: error: there are no arguments to ‘strcasecmp’ that depend on a template parameter, so a declaration of ‘strcasecmp’ must be available [-fpermissive]
} else if (!KALDI_STRCASECMP(str.c_str(), "nan")) {
^
kaldi-matrix.cc: In instantiation of ‘void kaldi::Matrix<Real>::Read(std::istream&, bool, bool) [with Real = float; std::istream = std::basic_istream<char>]’:
kaldi-matrix.cc:2840:16: required from here
kaldi-matrix.cc:1413:30: error: ‘strcasecmp’ was not declared in this scope
if (!KALDI_STRCASECMP(str.c_str(), "inf") ||
^
kaldi-matrix.cc:1414:30: error: ‘strcasecmp’ was not declared in this scope, and no declarations were found by argument-dependent lookup at the point of instantiation [-fpermissive]
!KALDI_STRCASECMP(str.c_str(), "infinity")) {
^
kaldi-matrix.cc:1413:30: note: ‘strcasecmp’ declared here, later in the translation unit
if (!KALDI_STRCASECMP(str.c_str(), "inf") ||
^
kaldi-matrix.cc:1417:37: error: ‘strcasecmp’ was not declared in this scope, and no declarations were found by argument-dependent lookup at the point of instantiation [-fpermissive]
} else if (!KALDI_STRCASECMP(str.c_str(), "nan")) {
^
kaldi-matrix.cc:1413:30: note: ‘strcasecmp’ declared here, later in the translation unit
if (!KALDI_STRCASECMP(str.c_str(), "inf") ||
^
In file included from ../base/kaldi-common.h:34:0,
from ../matrix/matrix-common.h:26,
from ../matrix/kaldi-matrix.h:25,
from kaldi-matrix.cc:23:
kaldi-matrix.cc: In instantiation of ‘void kaldi::Matrix<Real>::Init(kaldi::MatrixIndexT, kaldi::MatrixIndexT, kaldi::MatrixStrideType) [with Real = float; kaldi::MatrixIndexT = int]’:
kaldi-matrix.cc:2840:16: required from here
../base/kaldi-utils.h:55:22: error: ‘posix_memalign’ was not declared in this scope
(!posix_memalign(pp_orig, align, size) ? *(pp_orig) : NULL)
^
kaldi-matrix.cc:658:23: note: in expansion of macro ‘KALDI_MEMALIGN’
if (NULL != (data = KALDI_MEMALIGN(16, size, &temp))) {
^
kaldi-matrix.cc: In instantiation of ‘void kaldi::Matrix<Real>::Read(std::istream&, bool, bool) [with Real = double; std::istream = std::basic_istream<char>]’:
kaldi-matrix.cc:2841:16: required from here
kaldi-matrix.cc:1413:30: error: ‘strcasecmp’ was not declared in this scope
if (!KALDI_STRCASECMP(str.c_str(), "inf") ||
^
kaldi-matrix.cc:1414:30: error: ‘strcasecmp’ was not declared in this scope, and no declarations were found by argument-dependent lookup at the point of instantiation [-fpermissive]
!KALDI_STRCASECMP(str.c_str(), "infinity")) {
^
kaldi-matrix.cc:1413:30: note: ‘strcasecmp’ declared here, later in the translation unit
if (!KALDI_STRCASECMP(str.c_str(), "inf") ||
^
kaldi-matrix.cc:1417:37: error: ‘strcasecmp’ was not declared in this scope, and no declarations were found by argument-dependent lookup at the point of instantiation [-fpermissive]
} else if (!KALDI_STRCASECMP(str.c_str(), "nan")) {
^
kaldi-matrix.cc:1413:30: note: ‘strcasecmp’ declared here, later in the translation unit
if (!KALDI_STRCASECMP(str.c_str(), "inf") ||
^
In file included from ../base/kaldi-common.h:34:0,
from ../matrix/matrix-common.h:26,
from ../matrix/kaldi-matrix.h:25,
from kaldi-matrix.cc:23:
kaldi-matrix.cc: In instantiation of ‘void kaldi::Matrix<Real>::Init(kaldi::MatrixIndexT, kaldi::MatrixIndexT, kaldi::MatrixStrideType) [with Real = double; kaldi::MatrixIndexT = int]’:
kaldi-matrix.cc:2841:16: required from here
../base/kaldi-utils.h:55:22: error: ‘posix_memalign’ was not declared in this scope
(!posix_memalign(pp_orig, align, size) ? *(pp_orig) : NULL)
^
kaldi-matrix.cc:658:23: note: in expansion of macro ‘KALDI_MEMALIGN’
if (NULL != (data = KALDI_MEMALIGN(16, size, &temp))) {
^
kaldi-matrix.cc: In instantiation of ‘void kaldi::MatrixBase<Real>::Invert(Real*, Real*, bool) [with Real = float]’:
kaldi-matrix.cc:2842:16: required from here
../base/kaldi-utils.h:55:22: error: ‘posix_memalign’ was not declared in this scope
(!posix_memalign(pp_orig, align, size) ? *(pp_orig) : NULL)
^
kaldi-matrix.cc:51:11: note: in expansion of macro ‘KALDI_MEMALIGN’
KALDI_MEMALIGN(16, sizeof(Real)*l_work, &temp))) == NULL)
^
kaldi-matrix.cc: In instantiation of ‘void kaldi::MatrixBase<Real>::LapackGesvd(kaldi::VectorBase<Real>*, kaldi::MatrixBase<Real>*, kaldi::MatrixBase<Real>*) [with Real = float]’:
kaldi-matrix.cc:2842:16: required from here
../base/kaldi-utils.h:55:22: error: ‘posix_memalign’ was not declared in this scope
(!posix_memalign(pp_orig, align, size) ? *(pp_orig) : NULL)
^
kaldi-matrix.cc:566:11: note: in expansion of macro ‘KALDI_MEMALIGN’
KALDI_MEMALIGN(16, sizeof(Real)*l_work, &temp))) == NULL)
^
kaldi-matrix.cc: In instantiation of ‘void kaldi::MatrixBase<Real>::Invert(Real*, Real*, bool) [with Real = double]’:
kaldi-matrix.cc:2843:16: required from here
../base/kaldi-utils.h:55:22: error: ‘posix_memalign’ was not declared in this scope
(!posix_memalign(pp_orig, align, size) ? *(pp_orig) : NULL)
^
kaldi-matrix.cc:51:11: note: in expansion of macro ‘KALDI_MEMALIGN’
KALDI_MEMALIGN(16, sizeof(Real)*l_work, &temp))) == NULL)
^
kaldi-matrix.cc: In instantiation of ‘void kaldi::MatrixBase<Real>::LapackGesvd(kaldi::VectorBase<Real>*, kaldi::MatrixBase<Real>*, kaldi::MatrixBase<Real>*) [with Real = double]’:
kaldi-matrix.cc:2843:16: required from here
../base/kaldi-utils.h:55:22: error: ‘posix_memalign’ was not declared in this scope
(!posix_memalign(pp_orig, align, size) ? *(pp_orig) : NULL)
^
kaldi-matrix.cc:566:11: note: in expansion of macro ‘KALDI_MEMALIGN’
KALDI_MEMALIGN(16, sizeof(Real)*l_work, &temp))) == NULL)
^
<builtin>: recipe for target 'kaldi-matrix.o' failed
make[1]: *** [kaldi-matrix.o] Error 1
make[1]: Leaving directory '/cygdrive/i/Kaldi/kaldi-master/src/matrix'
Makefile:137: recipe for target 'matrix' failed
make: *** [matrix] Error 2
ranlib kaldi-nnet2.a
make[1]: Leaving directory '/cygdrive/i/Kaldi/kaldi-master/src/nnet2'
make -C chain
make[1]: Entering directory '/cygdrive/i/Kaldi/kaldi-master/src/chain'
g++ -msse -msse2 -Wall -I.. -DKALDI_DOUBLEPRECISION=0 -DHAVE_CLAPACK -I ../../tools/CLAPACK/ -Wno-sign-compare -Wno-unused-local-typedefs -Winit-self -I ../../tools/CLAPACK/ -I /cygdrive/i/Kaldi/kaldi-master/tools/openfst/include -g -c -o chain-supervision.o chain-supervision.cc
In file included from /cygdrive/i/Kaldi/kaldi-master/tools/openfst/include/fst/fstlib.h:54:0,
from ../fstext/fstext-lib.h:22,
from ../lat/kaldi-lattice.h:24,
from ../chain/chain-supervision.h:30,
from chain-supervision.cc:20:
/cygdrive/i/Kaldi/kaldi-master/tools/openfst/include/fst/compact-fst.h: In instantiation of ‘static bool fst::CompactFst<A, C, U>::WriteFst(const F&, const C&, std::ostream&, const fst::FstWriteOptions&) [with F = fst::VectorFst<fst::ArcTpl<fst::TropicalWeightTpl<float> > >; A = fst::ArcTpl<fst::TropicalWeightTpl<float> >; C = fst::AcceptorCompactor<fst::ArcTpl<fst::TropicalWeightTpl<float> > >; U = unsigned int; std::ostream = std::basic_ostream<char>]’:
chain-supervision.cc:532:22: required from here
/cygdrive/i/Kaldi/kaldi-master/tools/openfst/include/fst/compact-fst.h:937:42: warning: variable ‘num_compacts’ set but not used [-Wunused-but-set-variable]
size_t num_arcs = -1, num_states = -1, num_compacts = -1;
^
/usr/lib/gcc/x86_64-pc-cygwin/5.3.0/../../../../x86_64-pc-cygwin/bin/as: chain-supervision.o: too many sections (34434)
/tmp/ccDw48Md.s: Assembler messages:
/tmp/ccDw48Md.s: Fatal error: can't write chain-supervision.o: File too big
/usr/lib/gcc/x86_64-pc-cygwin/5.3.0/../../../../x86_64-pc-cygwin/bin/as: chain-supervision.o: too many sections (34434)
/tmp/ccDw48Md.s: Fatal error: can't close chain-supervision.o: File too big
<builtin>: recipe for target 'chain-supervision.o' failed
make[1]: *** [chain-supervision.o] Error 1
make[1]: Leaving directory '/cygdrive/i/Kaldi/kaldi-master/src/chain'
Makefile:137: recipe for target 'chain' failed
make: *** [chain] Error 2 ifeq ($(OSTYPE),cygwin)
cd openfst-$(OPENFST_VERSION)/; ./configure --prefix=`pwd` --enable-static --enable-shared --enable-far --enable-ngram-fsts CXX=$(CXX) CXXFLAGS="$(CXXFLAGS) -O" LDFLAGS="$(LDFLAGS)" LIBS="-ldl"
else
cd openfst-$(OPENFST_VERSION)/; ./configure --prefix=`pwd` --enable-static --enable-shared --enable-far --enable-ngram-fsts CXX=$(CXX) CXXFLAGS="$(CXXFLAGS)" LDFLAGS="$(LDFLAGS)" LIBS="-ldl"
endif
export OS_TYPE="cygwin"--
Go to http://kaldi-asr.org/forums.html find out how to join
---
You received this message because you are subscribed to the Google Groups "kaldi-help" group.
To unsubscribe from this group and stop receiving emails from it, send an email to kaldi-help+unsubscribe@googlegroups.com.
To unsubscribe from this group and stop receiving emails from it, send an email to kaldi-help+...@googlegroups.com.
$ bash RESULTS test
%WER 32.8 | 192 7215 | 70.0 19.5 10.5 2.8 32.8 100.0 | -0.256 | exp/mono/decode_test/score_6/ctm_39phn.filt.sys
%WER 25.7 | 192 7215 | 78.0 16.5 5.5 3.7 25.7 100.0 | -0.132 | exp/tri1/decode_test/score_10/ctm_39phn.filt.sys
%WER 23.6 | 192 7215 | 80.0 15.0 5.0 3.6 23.6 100.0 | -0.366 | exp/tri2/decode_test/score_9/ctm_39phn.filt.sys
%WER 21.1 | 192 7215 | 82.5 13.1 4.4 3.6 21.1 99.5 | -0.902 | exp/tri3/decode_test/score_8/ctm_39phn.filt.sys
%WER 23.6 | 192 7215 | 79.7 15.0 5.3 3.3 23.6 99.5 | -0.339 | exp/tri3/decode_test.si/score_9/ctm_39phn.filt.sys
%WER 22.8 | 192 7215 | 80.7 13.5 5.7 3.6 22.8 100.0 | -0.891 | exp/tri4_nnet/decode_test/score_4/ctm_39phn.filt.sys
%WER 19.4 | 192 7215 | 83.2 12.1 4.6 2.6 19.4 99.5 | -0.192 | exp/sgmm2_4/decode_test/score_9/ctm_39phn.filt.sys
%WER 19.4 | 192 7215 | 83.6 12.1 4.3 2.9 19.4 99.5 | -0.282 | exp/sgmm2_4_mmi_b0.1/decode_test_it1/score_8/ctm_39phn.filt.sys
%WER 19.4 | 192 7215 | 83.6 12.1 4.3 3.0 19.4 99.5 | -0.271 | exp/sgmm2_4_mmi_b0.1/decode_test_it2/score_8/ctm_39phn.filt.sys
%WER 19.4 | 192 7215 | 83.5 12.1 4.3 3.0 19.4 99.5 | -0.274 | exp/sgmm2_4_mmi_b0.1/decode_test_it3/score_8/ctm_39phn.filt.sys
%WER 19.4 | 192 7215 | 83.6 12.1 4.3 3.0 19.4 99.5 | -0.271 | exp/sgmm2_4_mmi_b0.1/decode_test_it4/score_8/ctm_39phn.filt.sys
%WER 18.3 | 192 7215 | 84.7 11.9 3.5 2.9 18.3 99.0 | -0.287 | exp/combine_2/decode_test_it1/score_5/ctm_39phn.filt.sys
%WER 18.2 | 192 7215 | 84.7 11.9 3.5 2.9 18.2 99.0 | -0.287 | exp/combine_2/decode_test_it2/score_5/ctm_39phn.filt.sys
%WER 18.2 | 192 7215 | 84.7 11.9 3.5 2.9 18.2 99.0 | -0.289 | exp/combine_2/decode_test_it3/score_5/ctm_39phn.filt.sys
%WER 18.3 | 192 7215 | 84.6 11.9 3.5 2.9 18.3 99.0 | -0.286 | exp/combine_2/decode_test_it4/score_5/ctm_39phn.filt.sys
============================================================================
DNN Hybrid Training & Decoding (Karel's recipe)
============================================================================
steps/nnet/make_fmllr_feats.sh --nj 10 --cmd run.pl --mem 2G --transform-dir exp/tri3/decode_test data-fmllr-tri3/test data/test expri3/test/log data-fmllr-tri3/test/data
steps/nnet/make_fmllr_feats.sh: feature type is lda_fmllr
utils/copy_data_dir.sh: copied data from data/test to data-fmllr-tri3/test
utils/validate_data_dir.sh: Successfully validated data-directory data-fmllr-tri3/test
run.pl: 4 / 10 failed, log is in data-fmllr-tri3/test/log/make_fmllr_feats.*.log
# copy-feats 'ark,s,cs:apply-cmvn --utt2spk=ark:data/test/split10/4/utt2spk scp:data/test/split10/4/cmvn.scp scp:data/test/split10/4/feats.scp ark:- | splice-feats --left-context=3 --right-context=3 ark:- ark:- | transform-feats exp/tri3/final.mat ark:- ark:- | transform-feats --utt2spk=ark:data/test/split10/4/utt2spk "ark:cat exp/tri3/decode_test/trans.* |" ark:- ark:- |' ark,scp:/cygdrive/i/kaldi/kaldi-master/egs/timit/s5/data-fmllr-tri3/test/data/feats_fmllr_test.4.ark,/cygdrive/i/kaldi/kaldi-master/egs/timit/s5/data-fmllr-tri3/test/data/feats_fmllr_test.4.scp
# Started at Sat Aug 12 23:36:49 2017
#
copy-feats 'ark,s,cs:apply-cmvn --utt2spk=ark:data/test/split10/4/utt2spk scp:data/test/split10/4/cmvn.scp scp:data/test/split10/4/feats.scp ark:- | splice-feats --left-context=3 --right-context=3 ark:- ark:- | transform-feats exp/tri3/final.mat ark:- ark:- | transform-feats --utt2spk=ark:data/test/split10/4/utt2spk "ark:cat exp/tri3/decode_test/trans.* |" ark:- ark:- |' ark,scp:/cygdrive/i/kaldi/kaldi-master/egs/timit/s5/data-fmllr-tri3/test/data/feats_fmllr_test.4.ark,/cygdrive/i/kaldi/kaldi-master/egs/timit/s5/data-fmllr-tri3/test/data/feats_fmllr_test.4.scp
apply-cmvn --utt2spk=ark:data/test/split10/4/utt2spk scp:data/test/split10/4/cmvn.scp scp:data/test/split10/4/feats.scp ark:-
transform-feats exp/tri3/final.mat ark:- ark:-
splice-feats --left-context=3 --right-context=3 ark:- ark:-
transform-feats --utt2spk=ark:data/test/split10/4/utt2spk 'ark:cat exp/tri3/decode_test/trans.* |' ark:- ark:-
WARNING (transform-feats:Next():util/kaldi-table-inl.h:574) Invalid archive file format: expected space after key ‡¸¶ż†| ŔW >ż©ƒ ż`śy?ˇÓäľ ňŕ>c&Á?{A0ż›Ę @KŚž>ÄŞ‚ż, got character [character 11], reading standard input
LOG (transform-feats:main():transform-feats.cc:158) Overall average logdet is 0.507242 over 195 frames.
LOG (transform-feats:main():transform-feats.cc:161) Applied transform to 1 utterances; 0 had errors.
LOG (apply-cmvn:main():apply-cmvn.cc:146) Applied cepstral mean normalization to 16 utterances, errors on 0
WARNING (transform-feats:Close():kaldi-io.cc:500) Pipe cat exp/tri3/decode_test/trans.* | had nonzero return status 13
ERROR (transform-feats:~SequentialTableReaderArchiveImpl():util/kaldi-table-inl.h:690) TableReader: error detected closing archive standard input
WARNING (copy-feats:Close():kaldi-io.cc:500) Pipe apply-cmvn --utt2spk=ark:data/test/split10/4/utt2spk scp:data/test/split10/4/cmvn.scp scp:data/test/split10/4/feats.scp ark:- | splice-feats --left-context=3 --right-context=3 ark:- ark:- | transform-feats exp/tri3/final.mat ark:- ark:- | transform-feats --utt2spk=ark:data/test/split10/4/utt2spk "ark:cat exp/tri3/decode_test/trans.* |" ark:- ark:- | had nonzero return status 65280
ERROR (copy-feats:~SequentialTableReaderArchiveImpl():util/kaldi-table-inl.h:690) TableReader: error detected closing archive 'apply-cmvn --utt2spk=ark:data/test/split10/4/utt2spk scp:data/test/split10/4/cmvn.scp scp:data/test/split10/4/feats.scp ark:- | splice-feats --left-context=3 --right-context=3 ark:- ark:- | transform-feats exp/tri3/final.mat ark:- ark:- | transform-feats --utt2spk=ark:data/test/split10/4/utt2spk "ark:cat exp/tri3/decode_test/trans.* |" ark:- ark:- |'
--
Go to http://kaldi-asr.org/forums.html find out how to join
---
You received this message because you are subscribed to the Google Groups "kaldi-help" group.
To unsubscribe from this group and stop receiving emails from it, send an email to kaldi-help+unsubscribe@googlegroups.com.