Skip to content

Commit 5a163c9

Browse files
Update regression-example-ames-no-preproc.py
1 parent c19c0d2 commit 5a163c9

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

regression-example-ames-no-preproc.py

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -56,18 +56,18 @@
5656
# discovered in a bayesian tuning study done on Katib)
5757

5858
meta_trial_number = 0 # In distributed training set this to a random number
59-
activation = 'swish'
60-
predecessor_level_connection_affinity_factor_first = 0.506486683067576
61-
predecessor_level_connection_affinity_factor_main = 1.6466748663373876
62-
max_consecutive_lateral_connections = 35
63-
p_lateral_connection = 3.703218275217572
64-
num_lateral_connection_tries_per_unit = 12
65-
learning_rate = 0.02804912925494706
66-
epochs = 130
67-
batch_size = 78
59+
activation = 'relu'
60+
predecessor_level_connection_affinity_factor_first = 3.458608634090366
61+
predecessor_level_connection_affinity_factor_main = 3.020897950280901
62+
max_consecutive_lateral_connections = 29
63+
p_lateral_connection = 0.4724567916748979
64+
num_lateral_connection_tries_per_unit = 7
65+
learning_rate = 0.04143817317646551
66+
epochs = 85 # 52
67+
batch_size = 97
6868
maximum_levels = 4
6969
maximum_units_per_level = 3
70-
maximum_neurons_per_unit = 3
70+
maximum_neurons_per_unit = 5
7171

7272

7373
cerebros =\
@@ -80,11 +80,11 @@
8080
validation_split=0.35,
8181
direction='minimize',
8282
metric_to_rank_by='val_root_mean_squared_error',
83-
minimum_levels=4,
83+
minimum_levels=3,
8484
maximum_levels=maximum_levels,
8585
minimum_units_per_level=2,
8686
maximum_units_per_level=maximum_units_per_level,
87-
minimum_neurons_per_unit=3,
87+
minimum_neurons_per_unit=4,
8888
maximum_neurons_per_unit=maximum_neurons_per_unit,
8989
activation=activation,
9090
final_activation=None,

0 commit comments

Comments
 (0)