def get_parameters(cls):
        """
        get parameters which belong to both flows
        :return: both flows parameters
        """

        return (
            InputSettings.get_similarity(),
            InputSettings.get_test_data_path(),
            InputSettings.get_results_path(),
            InputSettings.get_new_model_running(),
        )
示例#2
0
 def get_new_model_running(self):
     return InputSettings.get_new_model_running()