Closed bryanj1234 closed 2 years ago
In weirdness.py the parameter general_corpus_size is ignored. This means you have to write
weirdness.py
general_corpus_size
pyate.term_extraction.TermExtraction.config["DEFAULT_GENERAL_DOMAIN_SIZE"] = 5000 pyate.weirdness(text)
instead of just writing
pyate.weirdness(text, general_corpus_size=5000)
Appears to be the same issue in term_extractor.py.
term_extractor.py
Thanks for the catch.
In
weirdness.py
the parametergeneral_corpus_size
is ignored. This means you have to writeinstead of just writing
pyate.weirdness(text, general_corpus_size=5000)
Appears to be the same issue in
term_extractor.py
.