[~] Refactor

This commit is contained in:
Siarhei Siniak 2021-07-29 22:12:14 +03:00
parent bcc9cf6330
commit 9a327b8305

@ -1769,19 +1769,17 @@ def kernel_30(o_29, ids=None, delay=None,):
70
)
elif ids == 'v2':
t8 = numpy.where(
numpy.stack(
[
o_29['t5'].portion > 0.1,
o_29['t5'].mean_conf > 0.6,
o_29['t5']['t11'].data,
],
axis=0
).prod(axis=0)
)[0]
t8 = numpy.stack(
[
o_29['t5'].portion > 0.1,
o_29['t5'].mean_conf > 0.6,
o_29['t5']['t11'].data,
],
axis=0
).prod(axis=0)
pprint.pprint([t8.sum(), t8.mean()])
ids = numpy.random.choice(
t8,
numpy.where(t8)[0],
min(70, len(t8)),
)
else: