예제 #1
0
def e_074():
    a = ProjectVariable()
    a.experiment_name = '074. pretend save viper for priming'
    a.epochs = 100
    # a.save_inbetween = True
    # a.name_indication = 'dataset_name'
    # a.save_points = [100]
    a.ranking_number = 316
    a.iterations = 1
    a.activation_function = 'elu'
    a.neural_distance = 'absolute'
    a.datasets = ['viper']
    a.log_file = 'thesis_experiment_log.txt'
    scn.super_main(a)
예제 #2
0
def e_039():
    a = ProjectVariable()
    a.experiment_name = '039. save cuhk02 for priming'
    a.epochs = 100
    a.save_inbetween = True
    a.name_indication = 'dataset_name'
    a.save_points = [100]
    a.ranking_number = 100
    a.iterations = 1
    a.batch_size = 32
    a.activation_function = 'elu'
    a.cl_min = 0.00005
    a.cl_max = 0.001
    a.neural_distance = 'absolute'
    a.datasets = ['cuhk02']
    a.log_file = 'thesis_experiment_log.txt'
    scn.super_main(a)
예제 #3
0
def e_092():
    a = ProjectVariable()
    a.experiment_name = '092. viper > grid'
    a.epochs = 100
    # a.save_inbetween = True
    # a.name_indication = 'dataset_name'
    # a.save_points = [100]
    a.ranking_number = 125
    a.iterations = 10
    a.batch_size = 32

    a.load_weights_name = 'viper_weigths_base.h5'

    a.activation_function = 'elu'
    a.cl_min = 0.00005
    a.cl_max = 0.001
    a.neural_distance = 'absolute'

    a.datasets = ['grid']
    a.log_file = 'thesis_experiment_log.txt'
    scn.super_main(a)