From fd099da6ef81ae0ee112e69597116bf5eba2957b Mon Sep 17 00:00:00 2001 From: tomrink <rink@ssec.wisc.edu> Date: Mon, 17 May 2021 16:24:11 -0500 Subject: [PATCH] minor... --- modules/icing/pirep_goes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/icing/pirep_goes.py b/modules/icing/pirep_goes.py index 5fada8e0..acf468f7 100644 --- a/modules/icing/pirep_goes.py +++ b/modules/icing/pirep_goes.py @@ -1001,7 +1001,7 @@ def tile_extract(trnfile='/home/rink/tiles_l1b_train.h5', tstfile='/home/rink/ti #trn_idxs, tst_idxs = split_data(icing_intensity.shape[0], shuffle=False, perc=split) all_idxs = np.arange(icing_intensity.shape[0]) - splt_idx = int(icing_intensity.shape[0] * 0.8) + splt_idx = int(icing_intensity.shape[0] * (1-split)) trn_idxs = all_idxs[0:splt_idx] tst_idxs = all_idxs[splt_idx:] # --------------------------------------------- -- GitLab