PocketSphinx
5prealpha
Main Page
Data Structures
Files
File List
Globals
phone_loop_search.h
Go to the documentation of this file.
1
/* -*- c-basic-offset: 4; indent-tabs-mode: nil -*- */
2
/* ====================================================================
3
* Copyright (c) 2008 Carnegie Mellon University. All rights
4
* reserved.
5
*
6
* Redistribution and use in source and binary forms, with or without
7
* modification, are permitted provided that the following conditions
8
* are met:
9
*
10
* 1. Redistributions of source code must retain the above copyright
11
* notice, this list of conditions and the following disclaimer.
12
*
13
* 2. Redistributions in binary form must reproduce the above copyright
14
* notice, this list of conditions and the following disclaimer in
15
* the documentation and/or other materials provided with the
16
* distribution.
17
*
18
* This work was supported in part by funding from the Defense Advanced
19
* Research Projects Agency and the National Science Foundation of the
20
* United States of America, and the CMU Sphinx Speech Consortium.
21
*
22
* THIS SOFTWARE IS PROVIDED BY CARNEGIE MELLON UNIVERSITY ``AS IS'' AND
23
* ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
24
* THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
25
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL CARNEGIE MELLON UNIVERSITY
26
* NOR ITS EMPLOYEES BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
27
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
28
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
29
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
30
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
31
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
32
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
33
*
34
* ====================================================================
35
*
36
*/
37
47
#ifndef __PHONE_LOOP_SEARCH_H__
48
#define __PHONE_LOOP_SEARCH_H__
49
50
/* SphinxBase headers. */
51
#include <sphinxbase/cmd_ln.h>
52
#include <sphinxbase/logmath.h>
53
#include <sphinxbase/ngram_model.h>
54
#include <sphinxbase/listelem_alloc.h>
55
56
/* Local headers. */
57
#include "
pocketsphinx_internal.h
"
58
#include "
hmm.h
"
59
63
struct
phone_loop_renorm_s
{
64
int
frame_idx
;
65
int32
norm
;
66
};
67
typedef
struct
phone_loop_renorm_s
phone_loop_renorm_t
;
68
72
struct
phone_loop_search_s
{
73
ps_search_t
base
;
74
hmm_t
*
hmms
;
75
hmm_context_t
*
hmmctx
;
76
int16
frame
;
77
int16
n_phones
;
78
int32 **
pen_buf
;
79
int16
pen_buf_ptr
;
80
int32 *
penalties
;
81
float64
penalty_weight
;
83
int32
best_score
;
84
int32
beam
;
85
int32
pbeam
;
86
int32
pip
;
87
int
window
;
88
glist_t
renorm
;
89
};
90
typedef
struct
phone_loop_search_s
phone_loop_search_t
;
91
92
ps_search_t
*phone_loop_search_init(cmd_ln_t *config,
93
acmod_t
*acmod,
94
dict_t
*dict);
95
99
#define phone_loop_search_score(pls,ci) \
100
((pls == NULL) ? 0 : (pls->penalties[ci]))
101
102
#endif
/* __PHONE_LOOP_SEARCH_H__ */
pocketsphinx_internal.h
Internal implementation of PocketSphinx decoder.
phone_loop_search_s::penalties
int32 * penalties
Penalties for CI phones in current frame.
Definition:
phone_loop_search.h:80
ps_search_s
Base structure for search module.
Definition:
pocketsphinx_internal.h:98
phone_loop_search_s::base
ps_search_t base
Base search structure.
Definition:
phone_loop_search.h:73
phone_loop_search_s::pbeam
int32 pbeam
Phone exit pruning beam width.
Definition:
phone_loop_search.h:85
phone_loop_search_s::frame
int16 frame
Current frame being searched.
Definition:
phone_loop_search.h:76
phone_loop_search_s::hmmctx
hmm_context_t * hmmctx
HMM context structure.
Definition:
phone_loop_search.h:75
hmm_t
An individual HMM among the HMM search space.
phone_loop_search_s::pen_buf
int32 ** pen_buf
Penalty buffer.
Definition:
phone_loop_search.h:78
phone_loop_search_s::penalty_weight
float64 penalty_weight
Weighting factor for penalties.
Definition:
phone_loop_search.h:81
hmm.h
Implementation of HMM base structure.
phone_loop_renorm_s::norm
int32 norm
Normalization constant.
Definition:
phone_loop_search.h:65
phone_loop_search_s::pen_buf_ptr
int16 pen_buf_ptr
Pointer for frame to fill in penalty buffer.
Definition:
phone_loop_search.h:79
hmm_context_t
Shared information between a set of HMMs.
dict_t
a structure for a dictionary.
Definition:
dict.h:76
phone_loop_search_s::best_score
int32 best_score
Best Viterbi score in current frame.
Definition:
phone_loop_search.h:83
phone_loop_search_s::window
int window
Window size for phoneme lookahead.
Definition:
phone_loop_search.h:87
phone_loop_search_s::hmms
hmm_t * hmms
Basic HMM structures for CI phones.
Definition:
phone_loop_search.h:74
phone_loop_search_s::beam
int32 beam
HMM pruning beam width.
Definition:
phone_loop_search.h:84
phone_loop_search_s::pip
int32 pip
Phone insertion penalty ("language score").
Definition:
phone_loop_search.h:86
phone_loop_renorm_s::frame_idx
int frame_idx
Frame of renormalization.
Definition:
phone_loop_search.h:64
acmod_s
Acoustic model structure.
Definition:
acmod.h:148
phone_loop_search_s::n_phones
int16 n_phones
Size of phone array.
Definition:
phone_loop_search.h:77
phone_loop_search_s
Phone loop search structure.
Definition:
phone_loop_search.h:72
phone_loop_search_s::renorm
glist_t renorm
List of renormalizations.
Definition:
phone_loop_search.h:88
phone_loop_renorm_s
Renormalization event.
Definition:
phone_loop_search.h:63
src
libpocketsphinx
phone_loop_search.h
Generated by
1.8.5