After upgrading python to 3.5, the following warning results an error. I think it is better to change the type of mask or change outputs = [list(output[:mask.sum()]) (line 323) to outputs = [list(output[:int(mask.sum())]).
I'm not sure which way is better.
python3.4/site-packages/blocks/search.py:324: VisibleDeprecationWarning: using a non-integer number instead of an integer will result in an error in the future
for output, mask in equizip(outputs, masks)]
Hi,
After upgrading python to 3.5, the following warning results an error. I think it is better to change the type of mask or change
outputs = [list(output[:mask.sum()])
(line 323) tooutputs = [list(output[:int(mask.sum())])
. I'm not sure which way is better.Thanks.