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

snapshot...

parent be4214dd
No related branches found
No related tags found
No related merge requests found
...@@ -242,8 +242,8 @@ def get_label_data(grd_k): ...@@ -242,8 +242,8 @@ def get_label_data(grd_k):
s = a + b + c + d s = a + b + c + d
cat_0 = s <= -3 cat_0 = s <= -3
cat_1 = np.logical_and(s > -3, s < 3) cat_1 = np.logical_and(s > -3, s < 2)
cat_2 = s >= 3 cat_2 = s >= 2
s[cat_0] = 0 s[cat_0] = 0
s[cat_1] = 1 s[cat_1] = 1
s[cat_2] = 2 s[cat_2] = 2
......
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