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

📄 gs.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. * * ==================================================================== * *//* * gs.h -- gaussian density module. * * ********************************************** * CMU ARPA Speech Project * * Copyright (c) 1996 Carnegie Mellon University. * ALL RIGHTS RESERVED. * ********************************************** * * HISTORY *  * 29-Dec-03    A. Chan (archan@cs.cmu.edu) at Carnegie Mellon University. *              Initial version created            */#ifndef _LIB_GS_H_#define _LIB_GS_H_#include <s3types.h>#include "logs3.h"#include <stdio.h>/**  \file gs.h * \brief (Not opened to public) Gaussian selector Implentation *  * Implementation of Bochierri 93's idea of Gaussian Selection. A * pre-computed Gaussian selector map (not distributed in Sphinx 3 but * in s3fast.tgz distributed in Arthur Chan's web page) encode the * closest neighbors of a given codeword and a given GMM. * * In decoding, the closest codeword of the feature is first found and * the nearest neighborhood(s) for all GMMs will be retrieved from the * Gaussian selector map.  *  * The reason why this file is not opened to the public is because * sub-vector quantization supersed this idea conceptually.  Although * our SVQ implementation do not assume multiple Gaussians to be * computed given a sub-stream(sub-vector) codeword is found. It is * not difficult to extend the implementation to accomplish that.  *  * Saying this, for implementation symmetry, we should still check in the  * Gaussian selector implementation in this archive.  */#ifdef __cplusplusextern "C" {#endif  /**   *  Wrapper structure of gaussian selector   */typedef struct gs_s {  int32 n_mgau;  /** number of GMMs */  int32 n_feat;  /** number of streams */  int32 n_code;    int32 n_density; /** number of density */  int32 n_featlen; /** (This is not consistent to the Gaussian family of function */  int32 n_mbyte; /** number of bytes to read each time */  float32 **codeword; /** n_code * n_featlen */  uint32 ***codemap; /** n_feat * n_mgau * n_code*/  FILE *fp;  int32* mgau_sl; /** The short list for how many Gaussians will be computed */} gs_t;  /** display the Gaussian selector */int32 gs_display(char *file, gs_t *gs);  /** Read the Gaussian selector */gs_t* gs_read(char *file);int32 gc_compute_closest_cw ( gs_t *gs, float32 *feat);  /** Find the short list of the Gaussian selector */int32 gs_mgau_shortlist(gs_t *gs,  /*gaussain selector */			int32 m,   /*mixture index */			int32 n,   /*number of mixtures */			float32 *feat, /* feature vector */			int32 bst_codeid); /*best code indx */#ifdef __cplusplus}#endif#endif

⌨️ 快捷键说明

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