Language model interpolation
Created by: mrfox321
I am planning on modifying the decoder to allow for language model interpolation (multiple scorers). I was wondering if there is any plan on extending the decoder to allow for this. I am going to start working on it this week.
I currently plan on allowing for 2 scorers and an interpolation parameter. Although this can be extended for a set of language models and a set of parameters, I am not entirely sure if the SWIG python interface allows for std::vector (currently accepts a pointer to a Scorer).
I am also considering log-linear interpolation (papers have shown it to be more performant than linear).