s3_dag.h

来自「CMU大名鼎鼎的SPHINX-3大词汇量连续语音识别系统」· C头文件 代码 · 共 165 行

H
165
字号
/* ==================================================================== * Copyright (c) 1995-2004 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. * * ==================================================================== * *//* * align.h -- Exported time-aligner functions and data structures. * * ********************************************** * CMU ARPA Speech Project * * Copyright (c) 1996 Carnegie Mellon University. * ALL RIGHTS RESERVED. * ********************************************** *  * HISTORY *  * $Log: s3_dag.h,v $ * Revision 1.5  2004/12/14 00:50:33  arthchan2003 * 1, Change the code to accept extension, 2, add timer to livepretend, 3, fixing the s3_astar to separate the bypass variable to bypass and is_filler_bypass.  4, Add some doxygen comments. 5, Don't care about changes in main_decode_anytopo.c. It is still under work, 6, remove option -help and -example from 3.5 releases. * * Revision 1.4  2004/12/06 11:31:48  arthchan2003 * Fix brief comments for programs. * * Revision 1.3  2004/12/05 12:01:32  arthchan2003 * 1, move libutil/libutil.h to s3types.h, seems to me not very nice to have it in every files. 2, Remove warning messages of main_align.c 3, Remove warning messages in chgCase.c * * Revision 1.2  2004/09/13 08:13:28  arthchan2003 * update copyright notice from 200x to 2004 * * Revision 1.1  2004/08/30 22:29:19  arthchan2003 * Refactor the s3.0 tools, currently it is still quite messy, we need to make it modularize later on. * * 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.1  2003/02/14 14:40:34  cbq * Compiles.  Analysis is probably hosed. * * Revision 1.1  2000/04/24 09:39:41  lenzo * s3 import. * *  * 13-Sep-96	M K Ravishankar (rkm@cs.cmu.edu) at Carnegie Mellon University * 		Changed align_sen_active to flag active senones instead of building a list * 		of them. *  * 15-Jul-96	M K Ravishankar (rkm@cs.cmu.edu) at Carnegie Mellon University * 		Created. */#ifndef _LIBFBS_DAG_H_#define _LIBFBS_DAG_H_#include <s3types.h>#include "search.h"#include "dict.h"/** \file s3_dag.h    \brief data structure for dag.  *//** * DAG structure representation of word lattice.  A unique <wordid,startframe> is a node. * Edges are formed if permitted by time adjacency.  (See comment before dag_build.) */typedef struct dagnode_s {    s3wid_t wid;    int32 seqid;			/** Running sequence no. for identification */    s3frmid_t sf;			/** Start frame for this occurrence of wid */    s3frmid_t fef, lef;			/** First and last end frames */    struct dagnode_s *alloc_next;	/** Next in linear list of allocated nodes */    struct daglink_s *succlist;		/** List of successor nodes (adjacent in time) */    struct daglink_s *predlist;		/** List of preceding nodes (adjacent in time) */  uint8 reachable;                      /** astar specific: Whether final node reachable from here */} dagnode_t;/** A DAG node can have several successor or predecessor nodes, each represented by a link */typedef struct daglink_s {    dagnode_t *node;		/** Target of link (source determined by dagnode_t.succlist				   or dagnode_t.predlist) */    dagnode_t *src;		/** Source node of link */    struct daglink_s *next;	/** Next in same dagnode_t.succlist or dagnode_t.predlist */    struct daglink_s *history;	/** Previous link along best path (for traceback) */    struct daglink_s *bypass;	/** If this links A->B, bypassing A->fillnode->B, then				   bypass is ptr to fillnode->B */    int32 ascr;			/** Acoustic score for segment of source node ending just				   before the end point of this link.  (Actually this gets				   corrupted because of filler node deletion.) */    int32 lscr;			/** LM score to the SUCCESSOR node */    int32 pscr;			/** Best path score to root beginning with this link */    s3frmid_t ef;		/** End time for this link.  Should be 1 before the start				   time of destination node (or source node for reverse				   links), but gets corrupted because of filler deletion */    uint8 pscr_valid;		/** Flag to avoid evaluating the same path multiple times */  int32 is_filler_bypass;       /** Astar specific:Whether this is a filler bypass link */  int32 hscr;			/** Astar specific:Heuristic score from end of link to dag exit node */} daglink_t;/** Summary of DAG structure information */typedef struct {    dagnode_t *list;		/** Linear list of nodes allocated */    dagnode_t *root;            /** Corresponding to (<s>,0) */    daglink_t final;            /** Exit link from final DAG node */    daglink_t entry;		/** Entering (<s>,0) */    daglink_t exit;		/** Exiting (</s>,finalframe) */    s3wid_t orig_exitwid;	/** If original exit node is not a filler word */    int32 nfrm;    int32 nlink;    int32 nbypass;    int32 filler_removed;       /** Whether filler nodes removed from DAG to help search */    int32 fudged;               /** Whether fudge edges have been added */    s3latid_t latfinal;         /** Lattice entry determined to be final end point */} dag_t;srch_hyp_t *s3dag_dag_search (char *utt);int32 s3dag_dag_load (char *file);int32 dag_destroy ( void );void dag_init (dict_t* _dict);#endif

⌨️ 快捷键说明

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