We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 72e5313 commit 6d0ab14Copy full SHA for 6d0ab14
python/runcute.py
@@ -35,12 +35,11 @@ def print_usage():
35
weighted_terms = cute.parse_weighted_term_file(tf_file, top_terms=top_terms,
36
weight_function=cute.weight.CuteWeightFunction(rho, frequency_threshold))
37
38
- print('BEGIN Weighted terms')
39
if log_weighted_terms:
40
for protocol, protocol_wterms in weighted_terms.items():
41
for term, weight in protocol_wterms:
42
print('%s|%s|%d' % (protocol, term, weight), file=sys.stderr)
43
- print('END Weighted terms')
+ return
44
45
c = cute.Cute(weighted_terms)
46
i = 0
0 commit comments