例如,我想做一些NLP文本处理:提取一些关键字,并找到它们之间的相关性(使用之前的引理-POS分割)。 管道将是:
x > z
例如在pseudo-python中:
count all (lemmatised) words,
make a stopwords list,
use a RAKE-like algorithm to extract keyword list,
make some frequency-correlation matrix the kw list content and/or the POS/lemma words...
等等
如何在连续编程中改变这种管道?