⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 search.h

📁 CMU大名鼎鼎的SPHINX-3大词汇量连续语音识别系统
💻 H
字号:
/* ==================================================================== * Copyright (c) 1995-2002 Carnegie Mellon University.  All rights * reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of source code must retain the above copyright *    notice, this list of conditions and the following disclaimer.  * * 2. Redistributions in binary form must reproduce the above copyright *    notice, this list of conditions and the following disclaimer in *    the documentation and/or other materials provided with the *    distribution. * * This work was supported in part by funding from the Defense Advanced  * Research Projects Agency and the National Science Foundation of the  * United States of America, and the CMU Sphinx Speech Consortium. * * THIS SOFTWARE IS PROVIDED BY CARNEGIE MELLON UNIVERSITY ``AS IS'' AND  * ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,  * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL CARNEGIE MELLON UNIVERSITY * NOR ITS EMPLOYEES BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * * ==================================================================== * *//* * search.h -- All exported search-related functions and data structures. * * ********************************************** * CMU ARPA Speech Project * * Copyright (c) 1996 Carnegie Mellon University. * ALL RIGHTS RESERVED. * ********************************************** *  * HISTORY *  * $Log: search.h,v $ * Revision 1.3  2004/12/06 10:52:01  arthchan2003 * Enable doxygen documentation in libs3decoder * * Revision 1.2  2004/08/31 08:43:47  arthchan2003 * Fixing _cpluscplus directive * * Revision 1.1  2004/08/09 00:17:12  arthchan2003 * Incorporating s3.0 align, at this point, there are still some small problems in align but they don't hurt. For example, the score doesn't match with s3.0 and the output will have problem if files are piped to /dev/null/. I think we can go for it. * * Revision 1.2  2002/12/03 23:02:44  egouvea * Updated slow decoder with current working version. * Added copyright notice to Makefiles, *.c and *.h files. * Updated some of the documentation. * * Revision 1.1.1.1  2002/12/03 20:20:46  robust * Import of s3decode. * *  * 07-Nov-96	M K Ravishankar (rkm@cs.cmu.edu) at Carnegie Mellon University *  		Added onlynodes argument to dag_dump(). *  * 12-Sep-96	M K Ravishankar (rkm@cs.cmu.edu) at Carnegie Mellon University * 		Changed fwd_sen_active to flag active senones instead of building a list * 		of them. *   * 24-Jun-96	M K Ravishankar (rkm@cs.cmu.edu) at Carnegie Mellon University * 		Added dag_search(). *  * 20-Jan-96	M K Ravishankar (rkm@cs.cmu.edu) at Carnegie Mellon University * 		Added function fwd_sen_active() to obtain list of active senones in * 		current frame. *  * 04-Dec-95	M K Ravishankar (rkm@cs.cmu.edu) at Carnegie Mellon University * 		Started. */#ifndef _LIBFBS_SEARCH_H_#define _LIBFBS_SEARCH_H_/** \file search.h   \brief The temporary header file for sphinx 3 functions.  */#ifdef __cplusplusextern "C" {#endiftypedef struct srch_hyp_s {    char     *word;		/* READ-ONLY item!! */    s3wid_t   wid;    s3frmid_t sf;    s3frmid_t ef;    int32     ascr;    int32     lscr;    int32     pscr;    struct srch_hyp_s *next;} srch_hyp_t;/* ---------------- DAG related functions ---------------- */  /** DAG built from forward pass lattice */int32 dag_build ( void );  /** Dump DAG to file for postprocessing */int32 dag_dump (char *dir, int32 onlynodes, char *uttid);  /** Best path search through DAG from fwdvit word lattice */srch_hyp_t *dag_search (char *uttid);  /** Destroy DAG */int32 dag_destroy ( void );#ifdef __cplusplus}#endif#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -