-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtrain.php
62 lines (47 loc) · 1.59 KB
/
train.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<?php
include __DIR__ . '/vendor/autoload.php';
use Rubix\ML\Loggers\Screen;
use Rubix\ML\Datasets\Labeled;
use Rubix\ML\Extractors\CSV;
use Rubix\ML\PersistentModel;
use Rubix\ML\Pipeline;
use Rubix\ML\Transformers\NumericStringConverter;
use Rubix\ML\Transformers\ZScaleStandardizer;
use Rubix\ML\Classifiers\MultilayerPerceptron;
use Rubix\ML\NeuralNet\Layers\Dense;
use Rubix\ML\NeuralNet\Layers\Activation;
use Rubix\ML\NeuralNet\ActivationFunctions\ELU;
use Rubix\ML\NeuralNet\Optimizers\Momentum;
use Rubix\ML\Persisters\Filesystem;
ini_set('memory_limit', '-1');
$logger = new Screen();
$estimator = new PersistentModel(
new Pipeline([
new NumericStringConverter(),
new ZScaleStandardizer(),
], new MultilayerPerceptron([
new Dense(128),
new Activation(new ELU()),
new Dense(64),
new Activation(new ELU()),
new Dense(32),
new Activation(new ELU()),
new Dense(16),
new Activation(new ELU()),
], 256, new Momentum(0.01))),
new Filesystem('model.rbx')
);
$estimator->setLogger($logger);
foreach (glob("datasets/train_*.csv") as $i => $file) {
$logger->info("Loading $file into memory");
$dataset = Labeled::fromIterator(new CSV($file));
$logger->info('Partial training');
$estimator->partial($dataset);
$extractor = new CSV("progress_{$i}.csv", true);
$extractor->export($estimator->steps());
$logger->info("Progress saved to progress_{$i}.csv");
}
if (strtolower(readline('Save this model? (y|[n]): ')) === 'y') {
$estimator->save();
$logger->info('Model saved to model.rbx');
}