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

keep only < 273 for both icing and no-icing regions

parent caa0fe10
No related branches found
No related tags found
No related merge requests found
......@@ -1240,7 +1240,7 @@ def split_data(num_obs, perc=0.2, skip=1):
np.random.shuffle(test_idxs)
np.random.shuffle(train_idxs)
return train_idxs[::skip], test_idxs[::skip]
return np.sort(train_idxs[::skip]), np.sort(test_idxs[::skip])
def test(filename):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment