depth first search

“We can only see a short distance ahead, but we can see plenty there that needs to be done."

Category: ml

EM for Gaussian Mixtures

The next algorithm in my continuing series of short, hackable implementations of common machine learning algorithms is fitting a Gaussian mixture model through expectation maximization. This example follows section 9.2 in Bishop’s PRML. You can think of this kind of EM as “soft” clustering. We assume that the data has clusters, and that the cluster [...]

Applications of Machine Learning

It turns out that optimizing warehouse tasks is hard.

Question of the Day

Do shorter hypotheses result in more generalization? We have Occam’s razor as borrowed from Statistical Learning Theory: Entities should not be multiplied beyond necessity. Vapnik provides two reinterpretations, the common: The simplest explanation is the best. And the structural risk minimization version: The explanation by the machine with the smallest capacity (VC dimension) is the [...]