-
Notifications
You must be signed in to change notification settings - Fork 2
/
validate.php
36 lines (23 loc) · 921 Bytes
/
validate.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<?php
include __DIR__ . '/vendor/autoload.php';
use Rubix\ML\Extractors\CSV;
use Rubix\ML\Datasets\Labeled;
use Rubix\ML\PersistentModel;
use Rubix\ML\Persisters\Filesystem;
use Rubix\ML\CrossValidation\Reports\AggregateReport;
use Rubix\ML\CrossValidation\Reports\ConfusionMatrix;
use Rubix\ML\CrossValidation\Reports\MulticlassBreakdown;
ini_set('memory_limit', '-1');
echo 'Loading data into memory ...' . PHP_EOL;
$dataset = Labeled::fromIterator(new CSV('test.csv', true));
$estimator = PersistentModel::load(new Filesystem('dota.rbx'));
echo 'Making predictions ...' . PHP_EOL;
$predictions = $estimator->predict($dataset);
$report = new AggregateReport([
new MulticlassBreakdown(),
new ConfusionMatrix(),
]);
$results = $report->generate($predictions, $dataset->labels());
echo $results;
$results->toJSON()->saveTo(new Filesystem('report.json'));
echo 'Report saved to report.json' . PHP_EOL;