You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
MergeTree defined in "lsd/merge_tree.pyx" seems to inherit from nx.DiGraph and tries to look up nodes via self.node[node_id].
I think all of these calls should be changed to self.nodes[node_id]. networkx also isn't in the requirements file so maybe its just a versioning issue.
Ran into this error when using agglomerate_in_block.
The text was updated successfully, but these errors were encountered:
I think it makes most sense to move post-processing scripts to funlib.segment or another repo and keep this repo strictly for lsds. we can pin networkx then.
MergeTree
defined in "lsd/merge_tree.pyx" seems to inherit fromnx.DiGraph
and tries to look up nodes viaself.node[node_id]
.I think all of these calls should be changed to
self.nodes[node_id]
.networkx
also isn't in the requirements file so maybe its just a versioning issue.Ran into this error when using
agglomerate_in_block
.The text was updated successfully, but these errors were encountered: