Modifed the config to use the MHOD overload detection

This commit is contained in:
Anton Beloglazov 2012-10-20 15:39:26 +11:00
parent 9efe6cf254
commit bdcb0db0a2

View File

@ -109,11 +109,13 @@ algorithm_underload_detection_parameters = {"threshold": 0.3}
# The fully qualified name of a Python factory function that returns a
# function implementing an overload detection algorithm
algorithm_overload_detection_factory = neat.locals.overload.trivial.threshold_factory
#algorithm_overload_detection_factory = neat.locals.overload.trivial.threshold_factory
algorithm_overload_detection_factory = neat.locals.overload.mhod.core.mhod_factory
# 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 = {"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}
# The fully qualified name of a Python factory function that returns a
# function implementing a VM selection algorithm