htk-3.3

所属分类:通讯编程
开发工具:C++ Builder
文件大小:2199KB
下载次数:809
上传日期:2005-11-26 11:33:13
上 传 者wz90250
说明:  该压缩包为最新版htk的源代码,htk是现在比较流行的语音处理软件,请有兴趣的朋友下载使用
(the compressed HTK for the latest version of the source code, HTK is now more popular voice processing software, please friends are interested in using downloaded)

文件列表:
htk-3.3\AUTHORS (0, 2005-07-25)
htk-3.3\ChangeLog (1055, 2005-07-25)
htk-3.3\config.guess (38504, 2005-07-25)
htk-3.3\config.sub (28224, 2005-07-25)
htk-3.3\configure (168785, 2005-07-25)
htk-3.3\configure.in (2506, 2005-07-25)
htk-3.3\FAQ (3993, 2005-07-25)
htk-3.3\install-sh (5569, 2005-07-25)
htk-3.3\LICENSE (3721, 2005-07-25)
htk-3.3\Makefile.in (2332, 2005-07-25)
htk-3.3\HTKTools\ChangeLog (15640, 2005-07-25)
htk-3.3\HTKTools\HBuild.c (23756, 2005-07-25)
htk-3.3\HTKTools\HCompV.c (31813, 2005-07-25)
htk-3.3\HTKTools\HCopy.c (28112, 2005-07-25)
htk-3.3\HTKTools\HDMan.c (56859, 2005-07-25)
htk-3.3\HTKTools\HERest.c (45235, 2005-07-25)
htk-3.3\HTKTools\HHEd.c (195069, 2005-07-25)
htk-3.3\HTKTools\HInit.c (42648, 2005-07-25)
htk-3.3\HTKTools\HLEd.c (45100, 2005-07-25)
htk-3.3\HTKTools\HList.c (17558, 2005-07-25)
htk-3.3\HTKTools\HLRescore.c (17185, 2005-07-25)
htk-3.3\HTKTools\HLStats.c (28528, 2005-07-25)
htk-3.3\HTKTools\HParse.c (73456, 2005-07-25)
htk-3.3\HTKTools\HQuant.c (18318, 2005-07-25)
htk-3.3\HTKTools\HRest.c (43983, 2005-07-25)
htk-3.3\HTKTools\HResults.c (52019, 2005-07-25)
htk-3.3\HTKTools\HSGen.c (9603, 2005-07-25)
htk-3.3\HTKTools\HSLab.c (66669, 2005-07-25)
htk-3.3\HTKTools\HSmooth.c (31765, 2005-07-25)
htk-3.3\HTKTools\htk_htktools_nt.mkf (1813, 2005-07-25)
htk-3.3\HTKTools\HVite.c (36945, 2005-07-25)
htk-3.3\HTKTools\Makefile.in (1872, 2005-07-25)
htk-3.3\HTKTools (0, 2005-10-13)
htk-3.3\HTKLib\ChangeLog (21263, 2005-07-25)
htk-3.3\HTKLib\esignal.c (45799, 2005-07-25)
htk-3.3\HTKLib\esignal.h (8952, 2005-07-25)
htk-3.3\HTKLib\esig_asc.c (84585, 2005-07-25)
htk-3.3\HTKLib\esig_edr.c (70249, 2005-07-25)
htk-3.3\HTKLib\esig_nat.c (24125, 2005-07-25)
... ...

Hidden Markov Toolkit (HTK) 3.3 Use of this software is governed by a license agreement, the terms and conditions of which are set forth in the file LICENSE in the top-level HTK installation directory. Please read this file carefully as use of this software implies acceptance of the conditions described therein. Introduction ============ HTK is a toolkit for use in research into automatic speech recognition and has been developed by the Speech Vision Robotics Group at the Cambridge University Engineering Department (http://svr-www.eng.cam.ac.uk) and Entropic Ltd (http://www.entropic.com). Please visit the HTK homepage at the following address for more information about HTK: http://htk.eng.cam.ac.uk/ A number of mailing lists have been established to help users build and understand HTK, for details see http://htk.eng.cam.ac.uk/mailing/subscribe_mail.shtml License ======= HTK is made available free of charge and can be downloaded from the website mentioned above. However it may not be redistributed, i.e. you must register at the website and download it from there. Details about the terms under which HTK is made available can be found in the LICENSE file. Compiling & Installing HTK under UNIX/Linux =========================================== After unpacking the sources, cd to the htk-3.3 directory. Decide where you wish the binaries to be installed (default is /usr/local which will put the tools in /usr/local/bin) then type ./configure --prefix=/path/to/your/installation Then running "make all" will build the libraries and binaries. Running "make install" will install them. This step may need to be done as root, if you are not installing them in your home directory. Compiling & Installing HTK under Windows ======================================== Prerequisites: * HTK has been verified to compile using Microsoft Visual Studio. * For testing, you will require a Perl interpreter such as ActivePerl. * You will need a tool such as 7-zip or winzip (commercial) for unpacking the HTK source code archive. * It is helpful if you have some familiarity with using the DOS command line interface, as you will need to interact with it in order to compile, install and run HTK. * Ensure that your PATH contains C:\Program Files\Microsoft Visual Studio .NET 2003\Vc7\bin Or if you are using older versions: C:\Program Files\Microsoft Visual Studio\VC***\bin Compilation: 1. Unpack the HTK sources using 7-zip. 2. Open a DOS command window: Click Start, select Run type cmd at the prompt and click OK. 3. cd into the directory in which you unpacked the sources. 4. cd into the htk directory. Type: cd htk-3.3 5. Create a directory for the library and tools. Type: mkdir bin.win32 6. Run VCVARS32 (it should be in your path, see prerequisites above) 7. Build the HTK Library, which provides the common functionality used by the HTK Tools. Enter the following commands: cd HTKLib nmake /f htk_htklib_nt.mkf all cd .. 8. Build the HTK Tools cd HTKTools nmake /f htk_htktools_nt.mkf all cd .. cd HLMLib nmake /f htk_hlmlib_nt.mkf all cd .. cd HLMTools nmake /f htk_hlmtools_nt.mkf all cd .. Installation: The HTK tools have now been built and are in the bin.win32 directory. You should add this directory to your PATH, so that you can run them easily from the command line in future. Testing the Installation ======================== Among the samples on the HTK website you'll find the HTKDemo package that can be used to test your installation. See http://htk.eng.cam.ac.uk/download.shtml for download instructions. As an initial test of the installation please run the HTK demonstration using the configuration file HTKDemo/configs/monPlainM1S1.dcf. There is a README file in the HTKDemo directory explaining the operation of the demonstration in detail but, in short, you need to run the demonstration script passing it the configuration file configs/monPlainM1S1.dcf as input. To test the language modelling tools you should follow the tutorial in the HTK book, using the files in the LMTutorial/ directory. Before running the demo make sure you have compiled all the HTK tools and the executables are in your PATH, i.e. just typing 'HInit' at the commandline prints a short usage summary. To run the demonstration type: $ cd HTKDemo $ ./runDemo configs/monPlainM1S1.dcf The recognition results obtained should match the following. On the training set: ------------------------ Overall Results -------------------------- SENT: %Correct=0.00 [H=0, S=7, N=7] WORD: %Corr=77.63, Acc=74.89 [H=170, D=37, S=12, I=6, N=219] =================================================================== On the test set: ------------------------ Overall Results -------------------------- SENT: %Correct=0.00 [H=0, S=3, N=3] WORD: %Corr=63.91, Acc=59.40 [H=85, D=35, S=13, I=6, N=133] =================================================================== NB to run this demo under Windows you must have perl installed and you need to invoke perl explicitly. See http://www.perl.org/ to download the perl distribution. The script runDemo.pl should be used in place of runDemo i.e. to run the test above type > perl runDemo.pl configs\monPlainM1S1.dcf

近期下载者

相关文件


收藏者