diff --git a/neat.conf b/neat.conf index 0c9eb69..63706fd 100644 --- a/neat.conf +++ b/neat.conf @@ -112,12 +112,14 @@ 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 #algorithm_overload_detection_factory = neat.locals.overload.trivial.threshold_factory -algorithm_overload_detection_factory = neat.locals.overload.mhod.core.mhod_factory +#algorithm_overload_detection_factory = neat.locals.overload.mhod.core.mhod_factory +algorithm_overload_detection_factory = neat.locals.overload.trivial.last_n_average_threshold_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 = {"state_config": [0.95], "otf": 0.1, "window_sizes": [30, 40, 50, 60, 70, 80, 90, 100], "bruteforce_step": 0.2, "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} +algorithm_overload_detection_parameters = {"threshold": 0.95, "n": 2} # The fully qualified name of a Python factory function that returns a # function implementing a VM selection algorithm