コード例 #1
0
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"))
コード例 #2
0
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"))
コード例 #3
0
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"))
コード例 #4
0
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"))
コード例 #5
0
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"))
コード例 #6
0
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"))