Commit 6626b55c authored by delanoe's avatar delanoe

[FEAT] Diff graph score inverse.

parent b0d02616
......@@ -73,7 +73,7 @@ def compare_corpora(Corpus_id_A, Corpus_id_B, node_ids):
if k not in data_B.keys():
queue.append(k)
else:
result[k] = data_A[k] / data_B[k]
result[k] = data_B[k] / data_A[k]
maximum = max([ result[k] for k in result.keys()])
minimum = min([ result[k] for k in result.keys()])
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment