Skip to content
Snippets Groups Projects
Commit 8c5f1d83 authored by Andi Gerken's avatar Andi Gerken
Browse files

Fixed concat bug

parent 5f77cebb
Branches
Tags 0.2.13
No related merge requests found
Pipeline #48762 passed
...@@ -542,7 +542,7 @@ def evaluate_follow_iid( ...@@ -542,7 +542,7 @@ def evaluate_follow_iid(
np.quantile(np.concatenate(follow), 0.9), np.quantile(np.concatenate(follow), 0.9),
] ]
) )
max_iid = np.quantile(np.concatenate(iid, dtype=np.float32), 0.9) max_iid = np.quantile(np.concatenate(iid), 0.9)
for i in range(len(follow)): for i in range(len(follow)):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment