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
After changes in #436 the H3Neighbourhood became undeterministic. The underlying library (h3py) returns from 4.0.0.b3 - uber/h3-py#339 neighbours in random order. That means that downstream models cannot be forced to return the same results between different sessions.
Potential solutions:
sort values from neighbourhoods inside the models - easiest for now, but that needs to be remembered across the models
change interface and logic of neighbourhoods to return sorted results (probably list instead of set) - preferred, one fix and done
e.g. a solution for 1. for Hex2VecEmbedder can look like that
After changes in #436 the H3Neighbourhood became undeterministic. The underlying library (h3py) returns from 4.0.0.b3 - uber/h3-py#339 neighbours in random order. That means that downstream models cannot be forced to return the same results between different sessions.
Potential solutions:
e.g. a solution for 1. for Hex2VecEmbedder can look like that
The text was updated successfully, but these errors were encountered: