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
Copy file name to clipboardExpand all lines: src/patternmodeller.cpp
+1Lines changed: 1 addition & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -47,6 +47,7 @@ void usage() {
47
47
cerr << "\t-W|--wordthreshold <number> Word occurrence threshold (secondary threshold): only count patterns in which the words/unigrams occur at least this many times, only effective when the primary " << endl;
48
48
cerr << "\t occurrence threshold (-t) is lower than this threshold (default: disabled)" << endl;
49
49
cerr << "\t-p|--prune <number> Prune all lower-order n-grams below the specified order that are *NOT* subsumed by higher order n-grams (default: 0, disabled). Only effective when used with -l, usually set to equal values" << endl;
50
+
cerr << "\t --prunesubsumed <number> Prune all lower-order n-grams below the specified order that are subsumed by higher order n-grams (default: 0, disabled). Only effective when used with -l, usually set to equal values" << endl;
50
51
cerr << "\t-s|--skipgrams Compute skipgrams (costs extra memory and time)" << endl;
51
52
cerr << "\t-y|--skipthreshold <number> Occurrence threshold for skipgrams (overrides -t for skipgrams, defaults to -t). Skipgrams occurring less than this will be pruned. Value must be equal to or higher than -t." << endl;
52
53
cerr << "\t-T|--skiptypes <number> Skip type threshold (for use with -s): only skipgrams with at least x possible types for the skip will be considered, otherwise the skipgram " << endl;
0 commit comments