diff --git a/modules/deeplearning/icing_cnn.py b/modules/deeplearning/icing_cnn.py index b8c5d252b35fff14749e0ad1cea5769d75632bfb..020668d3cfb31ed735c1603bfaa82beadbb81729 100644 --- a/modules/deeplearning/icing_cnn.py +++ b/modules/deeplearning/icing_cnn.py @@ -1,5 +1,5 @@ import tensorflow as tf -from util.setup import logdir, modeldir, cachepath, now, ancillary_path +from util.setup import logdir, modeldir, cachepath, now, ancillary_path, home_dir from util.util import EarlyStop, normalize, make_for_full_domain_predict from util.geos_nav import get_navigation, get_lon_lat_2d_mesh @@ -930,7 +930,7 @@ class IcingIntensityNN: if self.h5f_l2_tst is not None: self.h5f_l2_tst.close() - f = open('/home/rink/best_stats_'+now+'.pkl', 'wb') + f = open(home_dir+'/best_stats_'+now+'.pkl', 'wb') pickle.dump((best_test_loss, best_test_acc, best_test_recall, best_test_precision, best_test_auc, best_test_f1, best_test_mcc), f) f.close()