2017-02-16 22:23:55 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
2018-01-06 12:09:33 +00:00
|
|
|
namespace Phpml\Tests\Classification\Linear;
|
2017-02-16 22:23:55 +00:00
|
|
|
|
|
|
|
use Phpml\Classification\Linear\Adaline;
|
2018-03-06 22:26:36 +00:00
|
|
|
use Phpml\Exception\InvalidArgumentException;
|
2017-02-16 22:23:55 +00:00
|
|
|
use Phpml\ModelManager;
|
|
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
|
|
|
|
class AdalineTest extends TestCase
|
|
|
|
{
|
2018-03-06 22:26:36 +00:00
|
|
|
public function testAdalineThrowWhenInvalidTrainingType(): void
|
|
|
|
{
|
|
|
|
$this->expectException(InvalidArgumentException::class);
|
2018-10-16 19:42:06 +00:00
|
|
|
$this->expectExceptionMessage('Adaline can only be trained with batch and online/stochastic gradient descent algorithm');
|
|
|
|
|
|
|
|
new Adaline(
|
2018-03-06 22:26:36 +00:00
|
|
|
0.001,
|
|
|
|
1000,
|
|
|
|
true,
|
|
|
|
0
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-11-14 20:21:23 +00:00
|
|
|
public function testPredictSingleSample(): void
|
2017-02-16 22:23:55 +00:00
|
|
|
{
|
|
|
|
// AND problem
|
|
|
|
$samples = [[0, 0], [1, 0], [0, 1], [1, 1]];
|
|
|
|
$targets = [0, 0, 0, 1];
|
|
|
|
$classifier = new Adaline();
|
|
|
|
$classifier->train($samples, $targets);
|
2018-10-28 06:44:52 +00:00
|
|
|
self::assertEquals(0, $classifier->predict([0.1, 0.2]));
|
|
|
|
self::assertEquals(0, $classifier->predict([0.1, 0.99]));
|
|
|
|
self::assertEquals(1, $classifier->predict([1.1, 0.8]));
|
2017-02-16 22:23:55 +00:00
|
|
|
|
|
|
|
// OR problem
|
|
|
|
$samples = [[0, 0], [1, 0], [0, 1], [1, 1]];
|
|
|
|
$targets = [0, 1, 1, 1];
|
|
|
|
$classifier = new Adaline();
|
|
|
|
$classifier->train($samples, $targets);
|
2018-10-28 06:44:52 +00:00
|
|
|
self::assertEquals(0, $classifier->predict([0.1, 0.2]));
|
|
|
|
self::assertEquals(1, $classifier->predict([0.1, 0.99]));
|
|
|
|
self::assertEquals(1, $classifier->predict([1.1, 0.8]));
|
2017-02-16 22:23:55 +00:00
|
|
|
|
2017-03-05 08:43:19 +00:00
|
|
|
// By use of One-v-Rest, Adaline can perform multi-class classification
|
|
|
|
// The samples should be separable by lines perpendicular to the dimensions
|
|
|
|
$samples = [
|
|
|
|
[0, 0], [0, 1], [1, 0], [1, 1], // First group : a cluster at bottom-left corner in 2D
|
|
|
|
[5, 5], [6, 5], [5, 6], [7, 5], // Second group: another cluster at the middle-right
|
2017-11-22 21:16:10 +00:00
|
|
|
[3, 10], [3, 10], [3, 8], [3, 9], // Third group : cluster at the top-middle
|
2017-03-05 08:43:19 +00:00
|
|
|
];
|
|
|
|
$targets = [0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2];
|
|
|
|
|
|
|
|
$classifier = new Adaline();
|
|
|
|
$classifier->train($samples, $targets);
|
2018-10-28 06:44:52 +00:00
|
|
|
self::assertEquals(0, $classifier->predict([0.5, 0.5]));
|
|
|
|
self::assertEquals(1, $classifier->predict([6.0, 5.0]));
|
|
|
|
self::assertEquals(2, $classifier->predict([3.0, 9.5]));
|
2017-03-05 08:43:19 +00:00
|
|
|
|
2017-04-19 20:26:31 +00:00
|
|
|
// Extra partial training should lead to the same results.
|
|
|
|
$classifier->partialTrain([[0, 1], [1, 0]], [0, 0], [0, 1, 2]);
|
2018-10-28 06:44:52 +00:00
|
|
|
self::assertEquals(0, $classifier->predict([0.5, 0.5]));
|
|
|
|
self::assertEquals(1, $classifier->predict([6.0, 5.0]));
|
|
|
|
self::assertEquals(2, $classifier->predict([3.0, 9.5]));
|
2017-04-19 20:26:31 +00:00
|
|
|
|
|
|
|
// Train should clear previous data.
|
|
|
|
$samples = [
|
|
|
|
[0, 0], [0, 1], [1, 0], [1, 1], // First group : a cluster at bottom-left corner in 2D
|
|
|
|
[5, 5], [6, 5], [5, 6], [7, 5], // Second group: another cluster at the middle-right
|
2017-11-22 21:16:10 +00:00
|
|
|
[3, 10], [3, 10], [3, 8], [3, 9], // Third group : cluster at the top-middle
|
2017-04-19 20:26:31 +00:00
|
|
|
];
|
|
|
|
$targets = [2, 2, 2, 2, 0, 0, 0, 0, 1, 1, 1, 1];
|
|
|
|
$classifier->train($samples, $targets);
|
2018-10-28 06:44:52 +00:00
|
|
|
self::assertEquals(2, $classifier->predict([0.5, 0.5]));
|
|
|
|
self::assertEquals(0, $classifier->predict([6.0, 5.0]));
|
|
|
|
self::assertEquals(1, $classifier->predict([3.0, 9.5]));
|
2017-02-16 22:23:55 +00:00
|
|
|
}
|
|
|
|
|
2017-11-14 20:21:23 +00:00
|
|
|
public function testSaveAndRestore(): void
|
2017-02-16 22:23:55 +00:00
|
|
|
{
|
|
|
|
// Instantinate new Percetron trained for OR problem
|
|
|
|
$samples = [[0, 0], [1, 0], [0, 1], [1, 1]];
|
|
|
|
$targets = [0, 1, 1, 1];
|
|
|
|
$classifier = new Adaline();
|
|
|
|
$classifier->train($samples, $targets);
|
|
|
|
$testSamples = [[0, 1], [1, 1], [0.2, 0.1]];
|
|
|
|
$predicted = $classifier->predict($testSamples);
|
|
|
|
|
2018-10-16 19:42:06 +00:00
|
|
|
$filename = 'adaline-test-'.random_int(100, 999).'-'.uniqid('', false);
|
2018-10-28 06:44:52 +00:00
|
|
|
$filepath = (string) tempnam(sys_get_temp_dir(), $filename);
|
2017-02-16 22:23:55 +00:00
|
|
|
$modelManager = new ModelManager();
|
|
|
|
$modelManager->saveToFile($classifier, $filepath);
|
|
|
|
|
|
|
|
$restoredClassifier = $modelManager->restoreFromFile($filepath);
|
2018-10-28 06:44:52 +00:00
|
|
|
self::assertEquals($classifier, $restoredClassifier);
|
|
|
|
self::assertEquals($predicted, $restoredClassifier->predict($testSamples));
|
2017-02-16 22:23:55 +00:00
|
|
|
}
|
|
|
|
}
|