def experiment_six(): print("Experiment1 six") healthy_tasks = [MOM, BANK_CHECK, SIGNATURE_2, NATURAL_SENTENCE] disease_tasks = [HELLO, SIGNATURE_1, LE, WINDOW] test_tasks = [LISTENING] experiment = Experiment1() experiment.execute_experiment( "Dataset", healthy_tasks, disease_tasks, test_tasks, 2500, path.join("balanced_dataset", "sixth_experiment.txt"))
def experiment_four(): print("Experiment1 four") healthy_tasks = [MOM, LE, SIGNATURE_1, CLOCK] disease_tasks = [HELLO, SIGNATURE_2, BANK_CHECK, V_POINT] test_tasks = [NATURAL_SENTENCE, PENTAGON] experiment = Experiment1() experiment.execute_experiment( "Dataset", healthy_tasks, disease_tasks, test_tasks, 2500, path.join("balanced_dataset", "fourth_experiment.txt"))
def experiment_tow(): print("Experiment1 tow") healthy_tasks = [MOM, BANK_CHECK, SIGNATURE_2, V_POINT] disease_tasks = [HELLO, SIGNATURE_1, LE, PENTAGON] test_tasks = [NATURAL_SENTENCE, CLOCK] experiment = Experiment1() experiment.execute_experiment( "Dataset", healthy_tasks, disease_tasks, test_tasks, 2500, path.join("balanced_dataset", "second_experiment.txt"))
def experiment_one(): print("Experiment1 one") healthy_tasks = [MOM, BANK_CHECK, SIGNATURE_2, PENTAGON] disease_tasks = [HELLO, SIGNATURE_1, LE, WINDOW] test_tasks = [NATURAL_SENTENCE, CLOCK] experiment = Experiment1() experiment.execute_experiment( "Dataset", healthy_tasks, disease_tasks, test_tasks, 2500, path.join("balanced_dataset", "first_experiment.txt"))
def experiment_eight(): print("Experiment1 eight") healthy_tasks = [MOM, LE, NATURAL_SENTENCE, CLOCK] disease_tasks = [HELLO, LISTENING, BANK_CHECK, V_POINT] test_tasks = [NATURAL_SENTENCE, LISTENING] experiment = Experiment1() experiment.execute_experiment( "Dataset", healthy_tasks, disease_tasks, test_tasks, 2500, path.join("balanced_dataset", "eight_experiment.txt"))
def experiment_seven(): print("Experiment1 seven") healthy_tasks = [MOM, BANK_CHECK, SIGNATURE_2, CLOCK] disease_tasks = [HELLO, SIGNATURE_1, LE, PENTAGON] test_tasks = [CLOCK, PENTAGON] experiment = Experiment1() experiment.execute_experiment( "Dataset", healthy_tasks, disease_tasks, test_tasks, 2500, path.join("balanced_dataset", "seventh_experiment.txt"))