diff --git a/modules/deeplearning/icing_fcn.py b/modules/deeplearning/icing_fcn.py index ab219f2be169b2081f734e107b8d35b26d7c4159..76339ee8f4bfffc385d5e84bcac052997133cc79 100644 --- a/modules/deeplearning/icing_fcn.py +++ b/modules/deeplearning/icing_fcn.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 @@ -919,7 +919,7 @@ class IcingIntensityFCN: 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()