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
print("We have %d connected components in %d graphs. From these components %d have beend filtered."% (len(components) +filtered_total, len(graphs), filtered_total))
#print("We have %d connected components in %d graphs. From these components %d have beend filtered." % (len(components) + sum(filtered.values()), len(graphs), filtered_total))
print("Filtered out %d components with too many similar nodes, i.e., more than %d labels appeared more than %d times"% (filtered_total, max_similar, max_nodes))
#print("Filtered out %d components with too many similar nodes, i.e., more than %d labels appeared more than %d times" % (filtered["too_many_similar"] , max_similar, max_nodes))
print("Unexpected number of arguments. At least input path and output pathhas to be provided. Optionally as a third argument put NX or LG indicating the input graph formatting.")
130
+
print("Unexpected number of arguments. At least input path, output path, dataset name, as well as batch_size has to be provided. Optionally as a fourth argument put NX or LG indicating the input graph formatting.")
print("Two arguments expected: path to input graph database, path to output results. Run as python remove_duplicates.py [imput_folder] [output_folder]")
27
+
iflen(sys.argv) <4:
28
+
print("Three arguments expected: path to input graph database, path to output results. Run as python remove_duplicates.py [input_folder] [output_folder] [dataset_name]")
0 commit comments