Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Small bug #289

Merged
merged 7 commits into from
May 24, 2019
2 changes: 1 addition & 1 deletion pygrams.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ def get_args(command_line_arguments):
parser.add_argument("-st", "--search_terms", type=str, nargs='+', default=[],
help="Search terms filter: search terms to restrict the tfidf dictionary. "
"Outputs will be related to search terms")
parser.add_argument("-stthresh", "--search_terms_threshold", type=float, nargs='+', default=0.75,
parser.add_argument("-stthresh", "--search_terms_threshold", type=float, default=0.75,
help="Provides the threshold of how related you want search terms to be "
"Values between 0 and 1: 0.8 is considered high")
# Time filters
Expand Down