Skip to content

What's New in Version 0.8.0

  • The .louvain() method now raises a DirectedGraphNotSupported exception instead of a DirectedGraphNotApplicable exception when called from a directed graph.
  • Made improvements to the RAI debugger:

    • Rules with two or more unrelated variables are now flagged with a “Cross product” warning. Although cross products may be intentional, accidental cross products can lead to unexpected results and performance issues.
    • Detailed metrics are more accurately reported. Previously, some compilation time was reported as “Other.”
  • Made significant improvements to general query performance.

  • Improved the error message for the .eigenvector_centrality() method when called from a directed graph. The message now suggests using .pagerank() instead, which is supported for directed graphs.

  • Introduced an experimental solver library for optimization workloads. This library is not yet documented and is subject to frequent and unannounced API changes. If you would like to try out this feature, please contact customer support at support@relational.ai.

  • Fixed a bug that silently removed edges added to a directed graph that did not explicitly specify a weight property. Now, edges without the weight property are assigned the default_weight value specified in the Graph constructor.