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
Hi,
Is there a bug in GraphInference::DisplayGraph or is it supposed to be this way?
The score of every edge is returned as the sum of scores of all the edges between these two nodes, instead of that specific edge score.
For example, if there are two nodes with two different edges between them:
node1 - rel1 - node2 (score 1)
node1 - rel2 - node2 (score 2)
The returned score will be 3 for each for the edges, and on the edge between node1 and node2, the viewer will show something like:
node1 rel1 - 3, rel2 - 3 node2
As if the score of each of the two relations was 3,
Instead of showing the precise result:
node1 rel1 - 1, rel2 - 2 node2
Thanks,
Uri
The text was updated successfully, but these errors were encountered:
Hi,
Is there a bug in GraphInference::DisplayGraph or is it supposed to be this way?
The score of every edge is returned as the sum of scores of all the edges between these two nodes, instead of that specific edge score.
For example, if there are two nodes with two different edges between them:
node1 - rel1 - node2 (score 1)
node1 - rel2 - node2 (score 2)
The returned score will be 3 for each for the edges, and on the edge between node1 and node2, the viewer will show something like:
node1 rel1 - 3, rel2 - 3 node2
As if the score of each of the two relations was 3,
Instead of showing the precise result:
node1 rel1 - 1, rel2 - 2 node2
Thanks,
Uri
The text was updated successfully, but these errors were encountered: