generalized-language-modeling-toolkit
generalized-language-modeling-toolkit copied to clipboard
Better names for query modes
We currently support the following query modes:
Sequence: this is means we would nameP^*, e.g. sequence probability of P^n multiplied with length frequency of the sequence.<Order>: this means justP^n(in code this is calledFixed)Markov<Order>: same as sequence but with markov assumptionCond<Order>: Just the higher order conditional probability P^n
These are names both used in code and also as command line arguments. I don't like the names 'Sequence' or 'Fixed', are there any better? Also the descriptions are horrible.
Do we want something like MarkovCond<Order>?