From 2cad675307a25c0104efdfb19fe6e80c833e61a7 Mon Sep 17 00:00:00 2001 From: ecwood Date: Thu, 3 Aug 2023 11:54:26 -0700 Subject: [PATCH] #321 actually this one for the predicate type issue --- report_stats_on_kg_jsonl.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/report_stats_on_kg_jsonl.py b/report_stats_on_kg_jsonl.py index ef0a7e40..582fc0a5 100755 --- a/report_stats_on_kg_jsonl.py +++ b/report_stats_on_kg_jsonl.py @@ -52,7 +52,7 @@ def get_edge_stats(edges_file_name: list): subject_key = 'subject' object_key = 'object' predicate_curie_key = 'source_predicate' if not args.use_simplified_predicates else 'predicate' - label_key = 'relation_label' if not args.use_simplified_predicates else 'predicate' + label_key = 'relation_label' if not args.use_simplified_predicates else 'predicate_label' edge_count = 0 edge_sources = dict()