Skip to content
Snippets Groups Projects
Commit 718bb931 authored by tomrink's avatar tomrink
Browse files

snapshot...

parent b52f0acc
Branches
No related tags found
No related merge requests found
......@@ -237,9 +237,12 @@ def run(data_h5f, param_s, train_tiles, valid_tiles, num_keep_x_tiles=8, tile_wi
continue
nda = data[:, j_a:j_b, i_a:i_b]
if not keep_tile(param_s, nda):
continue
train_tiles.append(nda)
# if not keep_tile(param_s, nda):
# continue
nda = process_cld_prob(param_s, nda)
if nda is not None:
train_tiles.append(nda)
j_start = num_y_train * tile_width + 2*tile_width
for j in range(num_y_valid):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment