/**
* @file backtrellis.c
*
*
* @brief 単語トレリスの保存・参照
*
* 第1パスの結果を単語トレリスとして保存し,第2パスで参照するための関数群
* です. Julius では,第1パスで探索中に終端が生き残っていた単語は全て,
* その始終端フレーム,始端からの累積尤度および単語履歴とともに
* 保存され,第2パスでその集合の中から再探索が行われます.
* この第1パスでフレームごとに残される単語情報のことを「トレリス単語」,
* トレリス単語の集合全体を「単語トレリス」と呼びます.
*
* トレリス単語は,第1パスの認識中に各フレームごとに保存されます.
* 第1パス終了後,トレリス全体の整形・再配置とフレームごとのインデックス
* を作成します.
*
* 第2パスでは,この単語トレリスを参照して
* 各時間(入力フレーム)における展開可能な仮説のリストを得るとともに,
* その第1パスでの(後ろ向きの)累積尤度を,第2パスにおける仮説の未展開部分の
* 推定スコアとして用います. このしくみから,単語トレリスは「バックトレリス」
* とも呼ばれています.
*
*
*
* @brief Word trellis operations
*
* Functions to store the result of the 1st pass as "word trellis",
* and functions to access them from the 2nd pass are defined in this
* file. On the 1st pass of Julius, all the promising words whose
* word end has been survived at the 1st pass will be stored as "word
* trellis", which consists of surviving words: word boundary,
* accumulated score and word history.
*
* The trellis word will be stored per frame at the 1st pass. After
* the 1st pass ended, the word trellis will be re-organized and
* indexed by frame to prepare for access at the 2nd pass.
*
* In the 2nd pass of reverse stack decoding, this word trellis will be
* used to constrain the word hypothesis, and also used to estimate
* the score of unseen area by the obtained backward scores in the 1st pass.
* Thus the word trellis information is also called as "back trellis" in
* Julius.
*
*
* @author Akinobu LEE
* @date Tue Feb 22 15:40:01 2005
*
* $Revision: 1.4 $
*
*/
/*
* Copyright (c) 1991-2012 Kawahara Lab., Kyoto University
* Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology
* Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology
* All rights reserved
*/
#include
/**
*
* 単語トレリスを保持する 単語トレリス 構造体を初期化する(起動時に1回だけ実行)
*
* @param bt [in] 初期化する 単語トレリス 構造体へのポインタ
*
*
* Initialize backtrellis that will hold the whole word trellis
* (called once on startup).
*
* @param bt [in] pointer to the backtrellis structure to initialize
*
*
* @callergraph
* @callgraph
*
*/
void
bt_init(BACKTRELLIS *bt)
{
bt->num = NULL;
bt->rw = NULL;
bt->list = NULL;
bt->root = NULL;
}
/**
*
* 次回の認識用に 単語トレリス 構造体を準備する (認識開始時ごとに実行).
*
* @param bt [in] 対象とする単語トレリス構造体へのポインタ
*
*
* Prepare backtrellis for the next input (called at beginning of each
* speech segment).
*
* @param bt [in] pointer to the word trellis structure
*
* @callergraph
* @callgraph
*
*/
void
bt_prepare(BACKTRELLIS *bt)
{
/* free previously allocated data */
mybfree2(&(bt->root));
/* reset entry point */
bt->num = NULL;
bt->rw = NULL;
bt->list = NULL;
bt->root = NULL;
}
/**
*
* Free memories of backtrellis.
*
*
* 単語トレリスのメモリを開放する.
*
*
* @param bt [out] pointer to the word trellis structure.
*
* @callergraph
* @callgraph
*
*/
void
bt_free(BACKTRELLIS *bt)
{
if (bt->root) mybfree2(&(bt->root));
free(bt);
}
/**
*
* Allocate a new trellis word atom.
*
*
* トレリス単語を新たに割り付ける.
*
*
* @param bt [out] pointer to the word trellis structure.
*
* @return pointer to the newly allocated trellis word.
*
* @callergraph
* @callgraph
*
*/
TRELLIS_ATOM *
bt_new(BACKTRELLIS *bt)
{
TRELLIS_ATOM *new;
new = (TRELLIS_ATOM *)mybmalloc2(sizeof(TRELLIS_ATOM), &(bt->root));
return new;
}
/**
*
* 第1パスで出現したトレリス単語(単語終端のトレリス情報)を格納する.
*
* ここでは格納だけ行い,第1パス終了後に bt_relocate_rw() で
* フレーム順に再配置する.
*
* @param bt [i/o] トレリス単語を格納するバックトレリス構造体
* @param tatom [in] 出現したトレリス単語へのポインタ
*
*
* Store a trellis word generated on the 1st pass for the 2nd pass.
*
* This function just store the new atom into backtrellis.
* They will be re-located per frame after 1st pass for quick access
* in the 2nd pass.
*
* @param bt [i/o] backtrellis structure to store the trellis word
* @param tatom [in] the trellis word to be stored
*
*
* @callergraph
* @callgraph
*
*/
void
bt_store(BACKTRELLIS *bt, TRELLIS_ATOM *tatom)
{
#ifdef WORD_GRAPH
tatom->within_context = FALSE;
tatom->within_wordgraph = FALSE;
#endif
tatom->next = bt->list;
bt->list = tatom;
}
/**
*
* 第1パス終了後, 格納された単語トレリス情報をフレーム順に再配置する.
*
* @param bt [i/o] 単語トレリス構造体
*
*
* Re-locate the stored atom lists per frame (will be called after the
* 1st pass).
*
* @param bt [i/o] word trellis structure
*
*
* @callergraph
* @callgraph
*
*/
void
bt_relocate_rw(BACKTRELLIS *bt)
{
TRELLIS_ATOM *tre;
int t;
int totalnum, n;
TRELLIS_ATOM **tmp;
if (bt->framelen == 0) {
bt->num = NULL;
return;
}
bt->num = (int *)mybmalloc2(sizeof(int) * bt->framelen, &(bt->root));
/* count number of trellis atom (= survived word end) for each frame */
for (t=0;tframelen;t++) bt->num[t] = 0;
totalnum = 0;
for (tre=bt->list;tre;tre=tre->next) {
/* the last frame (when triggered from sp to non-sp) should be discarded */
if (tre->endtime >= bt->framelen) continue;
bt->num[tre->endtime]++;
totalnum++;
}
/* if no atom found, return here with all bt->num[t] set to 0 */
if (totalnum <= 0) {
bt->num = NULL;
return;
}
/* allocate area */
bt->rw = (TRELLIS_ATOM ***)mybmalloc2(sizeof(TRELLIS_ATOM **) * bt->framelen, &(bt->root));
tmp = (TRELLIS_ATOM **)mybmalloc2(sizeof(TRELLIS_ATOM *) * totalnum, &(bt->root));
n = 0;
for (t=0;tframelen;t++) {
if (bt->num[t] > 0) {
bt->rw[t] = (TRELLIS_ATOM **)&(tmp[n]);
n += bt->num[t];
}
}
/* then store the atoms */
for (t=0;tframelen;t++) bt->num[t] = 0;
for (tre=bt->list;tre;tre=tre->next) {
/* the last frame (when triggered from sp to non-sp) should be discarded */
if (tre->endtime >= bt->framelen) continue;
t = tre->endtime;
bt->rw[t][bt->num[t]] = tre;
bt->num[t]++;
}
}
/* 以下の関数は bt_relocate_rw 実行後にのみ使用可能となる. */
/* functions below this line should be called after bt_relocate_rw() */
/**
*
* 逐次デコーディング時, 第1パス終了後に,
* 入力セグメントの両端に残った最尤単語仮説を取り出し, それらを
* 第2パスにおける初期/最終仮説としてセットする.
*
* @param r [in] 認識処理インスタンス
*
*
* When using progressive decoding with short pause segmentation,
* This function extracts the best word hypothesis on head and tail of
* the current input segment just after the 1st pass ends,
* and store them as start/end word in the following 2nd pass.
*
* @param r [in] recognition process instance
*
*
* @callergraph
* @callgraph
*
*/
void
set_terminal_words(RecogProcess *r)
{
LOGPROB maxscore;
int i,t;
BACKTRELLIS *bt;
bt = r->backtrellis;
if (bt->num == NULL) return;
maxscore = LOG_ZERO;
/* find last frame where a word exists */
for(t=bt->framelen-1;t>=0;t--) {
if (bt->num[t] > 0) break;
}
/* get maximum word hypothesis at that frame */
for(i=0;inum[t];i++) {
if (maxscore < (bt->rw[t][i])->backscore) {
maxscore = (bt->rw[t][i])->backscore;
r->sp_break_2_begin_word = (bt->rw[t][i])->wid;
}
}
maxscore = LOG_ZERO;
/* find first frame where a word exists */
for(t=0;tframelen;t++) {
if (bt->num[t] > 0) break;
}
/* get maximum word hypothesis at that frame */
for(i=0;inum[t];i++) {
if (maxscore < (bt->rw[t][i])->backscore) {
maxscore = (bt->rw[t][i])->backscore;
r->sp_break_2_end_word = (bt->rw[t][i])->wid;
}
}
#ifdef SP_BREAK_DEBUG
jlog("DEBUG: 2nd pass begin word: %s\n",
(r->sp_break_2_begin_word == WORD_INVALID) ? "WORD_INVALID" : r->lm->winfo->wname[r->sp_break_2_begin_word]);
jlog("DEBUG: 2nd pass end word: %s\n",
(r->sp_break_2_end_word == WORD_INVALID) ? "WORD_INVALID" : r->lm->winfo->wname[r->sp_break_2_end_word]);
#endif
}
/* the outprob on the trellis connection point should be discounted */
/**
*
* 第1パス終了後, 第2パスでのトレリス再接続計算のために,
* 全時間に渡って各トレリス単語の終端の最終状態の出力尤度を再計算し,
* それを累積から差し引いておく. 第2パスでは,仮説接続時には
* 接続仮説を考慮して接続点の状態の尤度が再計算される.
*
* @param wchmm [in] 木構造化辞書
* @param bt [in] 単語トレリス構造体
* @param param [in] 入力パラメータ情報
*
*
* Discount the output probabilities of the last state from the accumulated
* score on word edge for all trellis words survived on the 1st pass,
* for the acoustic re-computation on the 2nd pass.
* The acousitic likelihood of the word edge state will be re-computed
* when the next word hypotheses are expanded on the next 2nd pass.
*
* @param wchmm [in] tree lexicon
* @param bt [in] word trellis structure
* @param param [in] input parameter
*
*
* @callergraph
* @callgraph
*
*/
void
bt_discount_pescore(WCHMM_INFO *wchmm, BACKTRELLIS *bt, HTK_Param *param)
{
int t,i;
TRELLIS_ATOM *tre;
if (bt->num == NULL) return;
for (t=0; tframelen; t++) {
for (i=0; inum[t]; i++) {
tre = bt->rw[t][i];
/* On normal version, both language score and the output prob. score
at the connection point should removed on the trellis for the
later connection. On multi-path mode, removing only the language
score is enough. */
tre->backscore -= outprob_style(wchmm, wchmm->wordend[tre->wid], tre->last_tre->wid, t, param);
}
}
}
/**
*
* Subtract 2-gram scores at each trellis word for the 2nd pass.
*
*
* 第2パスのために2-gramスコアをトレリス上の単語から差し引く.
*
*
* @param bt [in] word trellis
*
* @callergraph
* @callgraph
*
*/
void
bt_discount_lm(BACKTRELLIS *bt)
{
int t,i;
TRELLIS_ATOM *tre;
if (bt->num == NULL) return;
/* the LM score of the last word should be subtracted, because
their LM will be assigned by 3-gram on the 2nd pass. */
for (t=0; tframelen; t++) {
for (i=0; inum[t]; i++) {
tre = bt->rw[t][i];
tre->backscore -= tre->lscore;
}
}
}
/**
*
* bt_sort_rw()用のqsortコールバック.
*
* @param a [in] 要素1
* @param b [in] 要素2
*
* @return 昇順ソートに必要な値
*
*
* qsort callback for bt_sort_rw().
*
* @param a [in] first element
* @param b [in] second element
*
* @return a value needed to do upward sort.
*
*
*
*/
static int
compare_wid(TRELLIS_ATOM **a, TRELLIS_ATOM **b)
{
if ((*a)->wid > (*b)->wid) return 1;
if ((*a)->wid < (*b)->wid) return -1;
return 0;
}
/**
*
* bt_relocate_rw() 終了後, 高速アクセスのために
* バックトレリス構造体内のトレリス単語をフレームごとに
* 単語IDでソートしておく.
*
* @param bt [i/o] 単語トレリス構造体
*
*
*
* Sort the trellis words in the backtrellis by the word IDs per each frame,
* for rapid access on the 2nd pass. This should be called just after
* bt_relocate_rw() was called.
*
* @param bt [i/o] word trellis structure
*
*
* @callergraph
* @callgraph
*
*/
void
bt_sort_rw(BACKTRELLIS *bt)
{
int t;
if (bt->num == NULL) return;
for (t=0;tframelen;t++) {
qsort(bt->rw[t], bt->num[t], sizeof(TRELLIS_ATOM *),
(int (*)(const void *,const void *))compare_wid);
}
}
/* 以下の関数は事前にbt_sort_rw() が呼ばれていること(第2パス用) */
/* functions below should be called after bt_sort_rw() */
/**
*
* 単語トレリス内の指定時刻フレーム上に,指定単語の終端があるかどうかを
* 検索する.
*
* @param bt [in] 単語トレリス構造体
* @param t [in] 検索する終端時刻(フレーム)
* @param wkey [in] 検索する単語の単語ID
*
* @return 見つかった場合そのトレリス単語へのポインタ,見つからなければ NULL.
*
*
* Search a word on the specified frame in a word trellis data.
*
* @param bt [in] word trellis structure
* @param t [in] word end frame on which to search
* @param wkey [in] word ID to search
*
* @return pointer to the found trellis word, or NULL if not found.
*
*
* @callergraph
* @callgraph
*
*/
TRELLIS_ATOM *
bt_binsearch_atom(BACKTRELLIS *bt, int t, WORD_ID wkey)
{
/* do binary search */
/* assume rw are ordered by wid */
int left, right, mid;
TRELLIS_ATOM *tmp;
#ifdef WPAIR
int i;
LOGPROB maxscore;
TRELLIS_ATOM *maxtre;
#endif
if (bt->num[t] == 0) return(NULL);
left = 0;
right = bt->num[t] - 1;
while (left < right) {
mid = (left + right) / 2;
if ((bt->rw[t][mid])->wid < wkey) {
left = mid + 1;
} else {
right = mid;
}
}
tmp = bt->rw[t][left];
if (tmp->wid == wkey) {
#ifdef WPAIR
/* same word with different context will be found:
most likely one will be returned */
maxscore = LOG_ZERO;
maxtre = NULL;
i = left;
while (i >= 0) {
tmp = bt->rw[t][i];
if (tmp->wid != wkey) break;
#ifdef WORD_GRAPH
/* only words on a graph path should be counted */
if (!tmp->within_wordgraph) {
i--; continue;
}
#endif
if (maxscore < tmp->backscore) {
maxscore = tmp->backscore;
maxtre = tmp;
}
i--;
}
i = left;
while (i < bt->num[t]) {
tmp = bt->rw[t][i];
if (tmp->wid != wkey) break;
#ifdef WORD_GRAPH
/* only words on a graph path should be counted */
if (!tmp->within_wordgraph) {
i++; continue;
}
#endif
if (maxscore < tmp->backscore) {
maxscore = tmp->backscore;
maxtre = tmp;
}
i++;
}
tmp = maxtre;
#else
#ifdef WORD_GRAPH
/* treat only words on a graph path */
if (! tmp->within_wordgraph) {
return NULL;
}
#endif
#endif /* WPAIR */
return(tmp);
} else {
return(NULL);
}
}
/* end of file */