log decisions counter

This commit is contained in:
Connor Olding 2018-06-13 03:00:05 +02:00
parent 719edfa4ae
commit 403127bd66

View File

@ -114,6 +114,7 @@ local log_map = {
weight_mean = 7, weight_mean = 7,
weight_std = 8, weight_std = 8,
test_trial = 9, test_trial = 9,
decisions = 10,
} }
local function log_csv(t) local function log_csv(t)
@ -307,6 +308,7 @@ local function learn_from_epoch()
weight_mean = weight_mean, weight_mean = weight_mean,
weight_std = weight_std, weight_std = weight_std,
test_trial = current_cost or 0, test_trial = current_cost or 0,
decisions = decisions_made,
} }
if cfg.enable_network then if cfg.enable_network then