#include <sent/stddefs.h>
#include <sent/ngram2.h>
ngram_access.cのインクルード依存関係図
関数 | |
NNID | search_bigram (NGRAM_INFO *ndata, WORD_ID w_l, WORD_ID w_r) |
static NNID | search_trigram_v3 (NGRAM_INFO *ndata, NNID n2, WORD_ID wkey) |
static NNID | search_trigram_v4 (NGRAM_INFO *ndata, NNID n2, WORD_ID wkey) |
LOGPROB | uni_prob (NGRAM_INFO *ndata, WORD_ID w) |
LOGPROB | bi_prob_lr (NGRAM_INFO *ndata, WORD_ID w1, WORD_ID w2) |
LOGPROB | bi_prob_rl (NGRAM_INFO *ndata, WORD_ID w1, WORD_ID w2) |
LOGPROB | tri_prob_rl (NGRAM_INFO *ndata, WORD_ID w1, WORD_ID w2, WORD_ID w3) |
ngram_access.c で定義されています。
|
Search for 2-gram tuple (w_l, w_r) in the 2-gram part of N-gram.
ngram_access.c の 39 行で定義されています。 参照元 add_bigram_rl(), bi_prob_lr(), bi_prob_rl(), set_trigram(), と tri_prob_rl(). |
|
Search for a reverse 3-gram tuple (wkey, w1, w2), where the context 2-gram tuple (w1, w2) should exist on 2-gram data part at n2. (for v3 struture format)
ngram_access.c の 77 行で定義されています。 参照元 tri_prob_rl(). |
|
Search for a reverse 3-gram tuple (wkey, w1, w2), where the context 2-gram tuple (w1, w2) should exist on 2-gram data part at n2. (for v4 struture format)
ngram_access.c の 115 行で定義されています。 参照元 tri_prob_rl(). |
|
Get 1-gram probability of
ngram_access.c の 154 行で定義されています。 参照元 build_wchmm2(), get_nbest_uniprob(), max_successor_prob(), と pick_backtrellis_words(). |
|
Get LR 2-gram probability of word/class sequence
ngram_access.c の 175 行で定義されています。 参照元 calc_successor_prob(), max_successor_prob(), と max_successor_prob_iw(). |
|
Get RL 2-gram probability of word/class sequence
ngram_access.c の 206 行で定義されています。 |
|
Get RL 3-gram probability of word/class sequence
ngram_access.c の 239 行で定義されています。 |