| Modifier and Type | Field and Description |
|---|---|
protected java.util.Map<SearchState,Token> |
WordPruningBreadthFirstSearchManager.bestTokenMap |
protected java.util.Map<SearchState,Token> |
SimpleBreadthFirstSearchManager.bestTokenMap |
protected java.util.Map<SearchState,Token> |
WordPruningBreadthFirstLookaheadSearchManager.fastMatchBestTokenMap |
| Modifier and Type | Method and Description |
|---|---|
SearchState |
Token.getSearchState()
Returns the SearchState associated with this token
|
| Modifier and Type | Method and Description |
|---|---|
protected java.util.Map<SearchState,Token> |
SimpleBreadthFirstSearchManager.getBestTokenMap()
Returns the best token map.
|
| Modifier and Type | Method and Description |
|---|---|
protected void |
WordPruningBreadthFirstSearchManager.checkStateOrder(SearchState fromState,
SearchState toState)
Checks that the given two states are in legitimate order.
|
protected Token |
WordPruningBreadthFirstSearchManager.getBestToken(SearchState state)
Gets the best token for this state
|
protected Token |
TokenHeapSearchManager.getBestToken(SearchState state) |
protected Token |
SimpleBreadthFirstSearchManager.getBestToken(SearchState state)
Gets the best token for this state
|
protected Token |
WordPruningBreadthFirstLookaheadSearchManager.getFastMatchBestToken(SearchState state) |
protected void |
WordPruningBreadthFirstSearchManager.setBestToken(Token token,
SearchState state)
Sets the best token for a given state
|
protected void |
TokenHeapSearchManager.setBestToken(Token token,
SearchState state) |
protected Token |
SimpleBreadthFirstSearchManager.setBestToken(Token token,
SearchState state)
Sets the best token for a given state
|
protected void |
WordPruningBreadthFirstLookaheadSearchManager.setFastMatchBestToken(Token token,
SearchState state) |
void |
Token.update(Token predecessor,
SearchState nextState,
float logEntryScore,
float insertionProbability,
float languageProbability,
long collectTime) |
| Modifier and Type | Method and Description |
|---|---|
protected void |
SimpleBreadthFirstSearchManager.setBestTokenMap(java.util.Map<SearchState,Token> bestTokenMap)
Sets the best token Map.
|
| Constructor and Description |
|---|
Token(SearchState state,
long collectTime)
Creates the initial token with the given word history depth
|
Token(Token predecessor,
SearchState state,
float logTotalScore,
float logInsertionScore,
float logLanguageScore,
long collectTime)
Internal constructor for a token.
|
| Modifier and Type | Interface and Description |
|---|---|
interface |
HMMSearchState
Represents a single HMM state in a language search space
|
interface |
UnitSearchState
Represents a unit state in a search space
|
interface |
WordSearchState
Represents a single word state in a language search space
|
| Modifier and Type | Method and Description |
|---|---|
SearchState |
SearchGraph.getInitialState()
Retrieves initial search state
|
SearchState |
SearchStateArc.getState()
Gets a successor to this search state
|
| Modifier and Type | Class and Description |
|---|---|
class |
AFlatLinguist.GrammarState
Represents a grammar node in the search graph.
|
| Modifier and Type | Class and Description |
|---|---|
class |
PhoneHmmSearchState |
class |
PhoneNonEmittingSearchState |
class |
PhoneWordSearchState |
| Modifier and Type | Method and Description |
|---|---|
SearchState |
AllphoneSearchGraph.getInitialState() |
SearchState |
PhoneNonEmittingSearchState.getState() |
SearchState |
PhoneHmmSearchState.getState() |
| Modifier and Type | Class and Description |
|---|---|
class |
AlternativeState
Represents a set of alternatives in an SentenceHMMS
|
class |
BranchState
Represents a branching node in a grammar
|
class |
ExtendedUnitState
A unit state that modifies how the unit state is cached.
|
class |
GrammarState
Represents a non-emitting sentence hmm state
|
class |
HMMStateState
Represents a hmmState in an SentenceHMMS
|
class |
NonEmittingHMMState
Represents a hmmState in an SentenceHMMS
|
class |
PronunciationState
Represents a pronunciation in an SentenceHMMS
|
class |
SentenceHMMState
Represents a single state in an SentenceHMM
|
class |
UnitState
Represents a unit in an SentenceHMMS
|
class |
WordState
Represents a word in an SentenceHMMS
|
| Modifier and Type | Field and Description |
|---|---|
protected java.util.Map<java.lang.String,SearchState> |
CIPhoneLoop.PhoneLoopSearchGraph.existingStates |
| Modifier and Type | Method and Description |
|---|---|
SearchState |
FlatLinguist.FlatSearchGraph.getInitialState() |
SearchState |
CIPhoneLoop.PhoneLoopSearchGraph.getInitialState()
Retrieves initial search state
|
SearchState |
SentenceHMMStateArc.getState()
Retrieves the next state
|
| Modifier and Type | Method and Description |
|---|---|
java.util.Collection<SearchState> |
FlatLinguist.GState.getStates()
Returns all of the states maintained by this gstate
|
| Constructor and Description |
|---|
FlatSearchGraph(SearchState initialState)
Constructs a flast search graph with the given initial state
|
| Modifier and Type | Class and Description |
|---|---|
class |
LexTreeLinguist.LexTreeEndUnitState
Represents a unit in the search space
|
class |
LexTreeLinguist.LexTreeEndWordState
Represents the final end of utterance word
|
class |
LexTreeLinguist.LexTreeHMMState
Represents a HMM state in the search space
|
class |
LexTreeLinguist.LexTreeNonEmittingHMMState
Represents a non emitting hmm state
|
class |
LexTreeLinguist.LexTreeUnitState
Represents a unit in the search space
|
class |
LexTreeLinguist.LexTreeWordState
Represents a word state in the search space
|
| Modifier and Type | Method and Description |
|---|---|
protected void |
LinguistDumper.dumpArc(java.io.PrintStream out,
SearchState from,
SearchStateArc arc,
int level)
Dumps an arc
|
protected void |
GDLDumper.dumpArc(java.io.PrintStream out,
SearchState from,
SearchStateArc arc,
int level)
Dumps an arc
|
protected void |
LinguistDumper.endDumpNode(java.io.PrintStream out,
SearchState state,
int level)
Called to dump out a node in the search space
|
protected void |
GDLDumper.endDumpNode(java.io.PrintStream out,
SearchState state,
int level)
Called to dump out a node in the search space
|
protected void |
LinguistDumper.startDumpNode(java.io.PrintStream out,
SearchState state,
int level)
Called to dump out a node in the search space
|
protected void |
GDLDumper.startDumpNode(java.io.PrintStream out,
SearchState state,
int level)
Called to dump out a node in the search space
|