Logistic regression
MNIST. Binary classification: 0 vs 1
MNIST case with RubixML
In real projects, people rarely implement logistic regression from scratch. It is much more convenient to use a machine learning library. The same 0-vs-1 MNIST case with RubixML becomes shorter and closer to production-style code:
Example of use
<?php
use app\classes\MnistLoader;
use Rubix\ML\Classifiers\LogisticRegression;
use Rubix\ML\CrossValidation\Metrics\Accuracy;
use Rubix\ML\Datasets\Labeled;
use Rubix\ML\Datasets\Unlabeled;
try {
$trainRows = MnistLoader::loadIterable('train.csv', categoricalLabels: true, normalize: true, digits: [0, 1]);
$testRows = MnistLoader::loadIterable('test.csv', categoricalLabels: true, normalize: true, digits: [0, 1]);
$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 LogisticRegression(epochs: 5);
$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 'Number of epochs: ' . $model->params()['epochs'] . PHP_EOL . PHP_EOL;
echo 'Accuracy: ' . round($score * 100, 2) . '%';
Sample of digit: 0
Probability of digit 0: 1
Predicted digit: 0
Sample of digit 1
Probability of digit 1: 0.978
Predicted digit: 1
Result:
Memory: 0 Mb
Time running: < 0.001 sec.
Train samples handled: 12,666
Test samples handled: 2,116
Number of epochs: 5
Accuracy: 99.95%