kevinlu1248 / pyate

PYthon Automated Term Extraction
https://kevinlu1248.github.io/pyate/
MIT License
305 stars 37 forks source link

TypeError: __init__() missing 1 required positional argument: 'nlp' #68

Open ZOC-cyber opened 1 year ago

ZOC-cyber commented 1 year ago

Error occrred when I tested pyate(pyate v0.5.5, spacy 3.4.4, en_core 3.4.1, python 3.7.6). The source codes are from demo: from pyate import combo_basic

string = """Central to the development of cancer are genetic changes that endow these “cancer cells” with many of the hallmarks of cancer, such as self-sufficient growth and resistance to anti-growth and pro-death signals. However, while the genetic changes that occur within cancer cells themselves, such as activated oncogenes or dysfunctional tumor suppressors, are responsible for many aspects of cancer development, they are not sufficient. Tumor promotion and progression are dependent on ancillary processes provided by cells of the tumor environment but that are not necessarily cancerous themselves. Inflammation has long been associated with the development of cancer. This review will discuss the reflexive relationship between cancer and inflammation with particular focus on how considering the role of inflammation in physiologic processes such as the maintenance of tissue homeostasis and repair may provide a logical framework for understanding the U connection between the inflammatory response and cancer.""" import spacy from pyate.term_extraction_pipeline import TermExtractionPipeline

nlp = spacy.load("en_core_web_sm") nlp.addpipe(TermExtractionPipeline())
print(doc.
.combo_basic.sort_values(ascending=False).head(5))

The error info:

nlp.add_pipe(TermExtractionPipeline()) TypeError: init() missing 1 required positional argument: 'nlp'

How can I debug the problem? Many thanks!