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

snapshot...

parent 34592faa
Branches
No related tags found
No related merge requests found
......@@ -310,9 +310,13 @@ class IcingIntensityFCN:
data_alt_ud = np.copy(data_alt)
label_ud = np.copy(label)
data = np.concatenate([data, data_ud])
data_alt = np.concatenate([data_alt, data_alt_ud])
label = np.concatenate([label, label_ud])
data_lr = np.flip(data, axis=2)
data_alt_lr = np.copy(data_alt)
label_lr = np.copy(label)
data = np.concatenate([data, data_ud, data_lr])
data_alt = np.concatenate([data_alt, data_alt_ud, data_alt_lr])
label = np.concatenate([label, label_ud, label_lr])
return data, data_alt, label
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment