Here's my code snippet:
`
perm = 128
lf = tm.LSHForest(perm)
fingerprints = [tm.VectorFloat(b) for b in all_embeds]
lf.batch_add(fingerprints)
`
where all_embeds is a numpy array of molecular fingerprints in float.
I tried python3.6, 3.9, and 3.10, all installed with conda install -c tmap tmap,
running as python script throws a bunch of vectors and then quit, running in notebook dies immediately.
Any idea on how to fix this?