Jack Boylan
Jack Boylan
@spranger also to answer 2. -- to `MATCH (a:friend)` you need to assign the node label to the `__labels__` attribute, in a `set`. We should probably include this in the...
I believe the error is coming up because the `ner_tags` actually need to be ints. The error you see usually comes up because PyTorch encounters an indexing mismatch. I had...
hey @rodrigues-pedro, thanks so much for taking the time to flag this. I added the indices results feature. I just saw this issue by chance - I’m tight for time...
hey @rodrigues-pedro sorry for such a delay but better late than never😅 I have tried to replicate your problem but it now seems to be solved already (nice job @davidsbatista...
Thanks for reporting! This is partly intentional, because we do no filtering **among** multiedges, eg if you asked for: ```python qry = """ MATCH (n)-[r:paid]->(m) WHERE r.amount > 13 RETURN...