/**
* Scores a complete sentence, taking appropriate care with the start- and
* end-of-sentence symbols. This is a convenience method and will generally
* be inefficient.
*
* @return
*/
public float scoreSentence(List<W> sentence);
it seems this method is what I want. But the doc says it's not efficient. So what should do to make it efficiently?