Updated the config: underload threshold -> 0.5, MHOD OTF 0.1

This commit is contained in:
Anton Beloglazov 2012-10-30 13:50:33 +11:00
parent e53867f14c
commit 8624037f7b

View File

@ -107,7 +107,7 @@ algorithm_underload_detection_factory = neat.locals.underload.trivial.last_n_ave
# A JSON encoded parameters, which will be parsed and passed to the
# specified underload detection algorithm factory
#algorithm_underload_detection_parameters = {"threshold": 0.3}
algorithm_underload_detection_parameters = {"threshold": 0.3, "n": 2}
algorithm_underload_detection_parameters = {"threshold": 0.5, "n": 2}
# The fully qualified name of a Python factory function that returns a
# function implementing an overload detection algorithm
@ -117,7 +117,7 @@ algorithm_overload_detection_factory = neat.locals.overload.mhod.core.mhod_facto
# A JSON encoded parameters, which will be parsed and passed to the
# specified overload detection algorithm factory
#algorithm_overload_detection_parameters = {"threshold": 0.9}
algorithm_overload_detection_parameters = {"state_config": [0.95], "otf": 0.2, "window_sizes": [30, 40, 50, 60, 70, 80, 90, 100], "bruteforce_step": 0.1, "learning_steps": 30}
algorithm_overload_detection_parameters = {"state_config": [0.95], "otf": 0.1, "window_sizes": [30, 40, 50, 60, 70, 80, 90, 100], "bruteforce_step": 0.2, "learning_steps": 30}
# The fully qualified name of a Python factory function that returns a
# function implementing a VM selection algorithm