MNIST: decision tree – how the model "sees" pixels

Implementation in RubixML

Running the MNIST decision tree example with RubixML.

 
<?php

use app\classes\MnistLoader;
use 
Rubix\ML\Classifiers\ClassificationTree;
use 
Rubix\ML\CrossValidation\Metrics\Accuracy;
use 
Rubix\ML\Datasets\Labeled;
use 
Rubix\ML\Datasets\Unlabeled;

try {
    
$trainRows MnistLoader::loadIterable('train.csv'categoricalLabelstruenormalizetruedigits: [01]);
    
$testRows MnistLoader::loadIterable('test.csv'categoricalLabelstruenormalizetruedigits: [01]);

    
$dataset Labeled::fromIterator($trainRows);
    
$testDataset Labeled::fromIterator($testRows);
} catch (
Exception $e) {
    echo 
'<div class="alert alert-danger" role="alert">' htmlspecialchars($e->getMessage(), ENT_QUOTES'UTF-8') . '</div>';
    exit;
}

$model = new ClassificationTree(
    
maxHeight10,
    
maxLeafSize5
);

$model->train($dataset);

$predictions = [];
$testingLabels $testDataset->labels();

foreach (
$testDataset->samples() as $i => $x) {
    
$prediction $model->predict(new Unlabeled([$x]))[0];
    
$predictions[] = $prediction;
}

$metric = new Accuracy();
$score $metric->score($predictions$testingLabels);

echo 
'Train samples handled: ' number_format($dataset->numSamples()) . PHP_EOL;
echo 
'Test samples handled: ' number_format($testDataset->numSamples()) . PHP_EOL PHP_EOL;
echo 
'Accuracy: ' round($score 1002) . '%';
Samples of digit: 0
Predicted digit: 0
Predicted digit: 0
Predicted digit: 0
Samples of digit: 1
Predicted digit: 1
Predicted digit: 1
Predicted digit: 1
Result: Memory: 0 Mb Time running: < 0.001 sec.
Train samples handled: 12,666
Test samples handled: 2,116

Accuracy: 99.72%