$guess = $classfier->predict('This is a nice post'); should be $guess = $class**i**fier->predict('This is a nice post'); tripped me up for a sec
$guess = $classfier->predict('This is a nice post');
should be
$guess = $classifier->predict('This is a nice post');
tripped me up for a sec