Skip to content
Snippets Groups Projects
Commit 1513caa9 authored by tomrink's avatar tomrink
Browse files

snapshot...

parent fc12ace3
No related branches found
No related tags found
No related merge requests found
...@@ -1192,8 +1192,10 @@ def run_average_models(ckpt_dir_s_path, day_night='NIGHT', l1b_andor_l2='BOTH', ...@@ -1192,8 +1192,10 @@ def run_average_models(ckpt_dir_s_path, day_night='NIGHT', l1b_andor_l2='BOTH',
z_model_weights = zip(model_weight_s) z_model_weights = zip(model_weight_s)
print('test') print('test')
avg_model_weights = [] avg_model_weights = []
for w in z_model_weights: for lyr in z_model_weights:
avg_model_weights(np.mean(w)) print(len(lyr))
for w in lyr:
avg_model_weights(np.mean(w))
print('***', len(avg_model_weights)) print('***', len(avg_model_weights))
avg_model_weights = [] avg_model_weights = []
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment