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
{{ message }}
This repository has been archived by the owner on May 31, 2020. It is now read-only.
Currently the window that produces a graph with top tokens runs get_top_tokens() in default, which is 20. Then it splices using OVERALL_OUTPUT_SIZE. This means that if STOP_WORDS has a number of items, it will only show 20 - len(STOP_WORDS) results, instead of the desired output.
POSSIBLE SOLUTION: change the get_top_tokens() instance to use OVERALL_OUTPUT_SIZE
The text was updated successfully, but these errors were encountered:
Currently the window that produces a graph with top tokens runs get_top_tokens() in default, which is 20. Then it splices using OVERALL_OUTPUT_SIZE. This means that if STOP_WORDS has a number of items, it will only show 20 - len(STOP_WORDS) results, instead of the desired output.
POSSIBLE SOLUTION: change the get_top_tokens() instance to use OVERALL_OUTPUT_SIZE
The text was updated successfully, but these errors were encountered: