From: Takashi A. <art...@us...> - 2015-03-05 02:55:32
|
Update of /cvsroot/sp-tk/SPTK/doc/ref_e In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv3450 Modified Files: vc.tex Log Message: fix the example of reference about vc. Index: vc.tex =================================================================== RCS file: /cvsroot/sp-tk/SPTK/doc/ref_e/vc.tex,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** vc.tex 12 Dec 2014 03:02:00 -0000 1.10 --- vc.tex 5 Mar 2015 02:55:30 -0000 1.11 *************** *** 360,377 **** \begin{qsection}{EXAMPLE} In the following example, the source and target features (24-th order Mel-cepstrum ! coefficients) are extracted from the file {\em source.raw} and the file {\em ! target.raw} of raw (short) format. These extracted features are automatically ! aligned and concatenated by {\em dtw} command, which can carry out dynamic time ! warping. The GMM of the joint features is trained and its parameters are saved as {\em source\_target.gmm}. \begin{quote} \verb!x2x +sf < source.raw | frame -l 400 -p 80 | \! \\ \verb! window -l 400 -L 1024 -w 0 | \! \\ ! \verb! mcep -l 1024 -m 24 -a 0.42 > source.mcep ! \\ \verb!x2x +sf < target.raw | frame -l 400 -p 80 | \! \\ \verb! window -l 400 -L 1024 -w 0 | \! \\ ! \verb! mcep -l 1024 -m 24 -a 0.42 > target.mcep ! \\ ! \verb!dtw -l 25 -p 5 -n 2 target.mcep < source.mcep | \! \\ ! \verb! gmm -l 50 -m 2 -f > source_target.gmm! \end{quote} Using the {\em source\_target.gmm} and the source features extracted from the file --- 360,380 ---- \begin{qsection}{EXAMPLE} In the following example, the source and target features (24-th order Mel-cepstrum ! coefficients) and dynamic features are extracted from ! the file {\em source.raw} and the file {\em target.raw} of raw (short) format. ! These extracted features are automatically aligned and concatenated ! by {\em dtw} command, which can carry out dynamic time warping. ! The GMM of the joint features is trained and its parameters are saved as {\em source\_target.gmm}. \begin{quote} \verb!x2x +sf < source.raw | frame -l 400 -p 80 | \! \\ \verb! window -l 400 -L 1024 -w 0 | \! \\ ! \verb! mcep -l 1024 -m 24 -a 0.42 | \! \\ ! \verb! delta -m 24 -r 1 1 > source.mcep.delta ! \\ \verb!x2x +sf < target.raw | frame -l 400 -p 80 | \! \\ \verb! window -l 400 -L 1024 -w 0 | \! \\ ! \verb! mcep -l 1024 -m 24 -a 0.42 | \! \\ ! \verb! delta -m 24 -r 1 1 > target.mcep.delta ! \\ ! \verb!dtw -l 50 -p 5 -n 2 target.mcep.delta < source.mcep.delta | \! \\ ! \verb! gmm -l 100 -m 2 -f > source_target.gmm! \end{quote} Using the {\em source\_target.gmm} and the source features extracted from the file *************** *** 406,409 **** --- 409,413 ---- \begin{qsection}{SEE ALSO} + \hyperlink{delta}{delta}, \hyperlink{dtw}{dtw}, \hyperlink{gmm}{gmm}, |