From 25263e1391c0f9b0c55227771c269c68e1e968ed Mon Sep 17 00:00:00 2001 From: Matt Graham Date: Fri, 7 Oct 2016 06:23:15 +0100 Subject: [PATCH] Including initial pre-training statistics. --- mlp/optimisers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mlp/optimisers.py b/mlp/optimisers.py index 123c3a5..ec2aefc 100644 --- a/mlp/optimisers.py +++ b/mlp/optimisers.py @@ -122,7 +122,7 @@ class Optimiser(object): and the second being a dict mapping the labels for the statistics recorded to their column index in the array. """ - run_stats = [] + run_stats = [self.get_epoch_stats().values()] for epoch in range(1, num_epochs + 1): start_time = time.clock() self.do_training_epoch()