Seems to me `top` function should have `Seq.sortByDescending` instead of `Seq.sortBy` [here](https://github.com/mathias-brandewinder/machine-learning-projects-for-dot-net-developers/blob/master/chapter-2/SpamOrHam/SpamOrHam/NaiveBayes.fsx#L119) Actually, better is `Seq.sortBy >> Seq.rev` as `sortByDescending` had much worse perf when tested