
edu.berkeley.nlp.lm.values.ProbBackoffValueContainer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of berkeleylm Show documentation
Show all versions of berkeleylm Show documentation
An N-gram Language Model Library from UC Berkeley
The newest version!
package edu.berkeley.nlp.lm.values;
public interface ProbBackoffValueContainer extends ValueContainer
{
public abstract float getProb(final int ngramOrder, final long index);
public abstract float getBackoff(final int ngramOrder, final long index);
public abstract ProbBackoffPair getScratchValue();
public abstract long getSuffixOffset(final long index, final int ngramOrder);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy