示例#1
0
def e_073():
    a = ProjectVariable()
    a.experiment_name = '073. priming on viper. no CLR. LR = 0.00000001'
    a.log_file = 'thesis_experiment_log.txt'
    a.priming = True
    a.ranking_number = 316
    a.load_weights_name = 'viper_weigths_0.h5'
    a.datasets = ['viper']
    a.prime_epochs = 5
    a.use_cyclical_learning_rate = False
    a.learning_rate = 0.00000001
    a.iterations = 10
    prime.super_main(a)
示例#2
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)