From 1c134cda607f0a430bda896af6157e61cadc897d Mon Sep 17 00:00:00 2001 From: andreas128 Date: Wed, 27 Sep 2017 21:56:56 +0200 Subject: Change heuristic --- dpd/src/Heuristics.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'dpd') diff --git a/dpd/src/Heuristics.py b/dpd/src/Heuristics.py index 90a4ed6..467c5da 100644 --- a/dpd/src/Heuristics.py +++ b/dpd/src/Heuristics.py @@ -19,7 +19,7 @@ def get_learning_rate(idx_run): def get_n_meas(idx_run): idx_max = 10.0 n_meas_min = 10 - n_meas_max = 50 + n_meas_max = 20 n_meas_delta = n_meas_max - n_meas_min idx_run = min(idx_run, idx_max) learning_rate = n_meas_delta * idx_run/idx_max + n_meas_min -- cgit v1.2.3