-
It seems to me that nlp.add_pipe("textrank") must have "noun chunks" which will raise "NotImplementedError" for some language models where "noun chunks" have not been implemented. I've got "NotImpleme…
-
Hi,
I had a problem with stopwords with `textrank` in the guide https://derwen.ai/docs/ptr/sample/#stop-words , my script is:
```
import spacy
import pytextrank
from icecream import ic
txt =…
-
I do not know why does the algorithm filter out the verbs?
def limit_keyphrases (json_iter, phrase_limit=10):
.....
for rl in lex:
if rl.pos[0] != "v":
if (used >…
-
系统:Ubuntu Server 20.04 LTS 64bit
我是在腾讯云的服务器上部署的,输入`python3 -m pip install -r requirements.txt`后,开始很正常,但是到最后就报错了。
`error: subprocess-exited-with-error
× python setup.py bdist_wheel did n…
-
Question: I am new at this and working from the example script to extract key phrases from about 800 separate documents. The tool is great! I notice in the results that some documents will produce a s…
-
![image](https://user-images.githubusercontent.com/45150983/191413131-9ae8fff8-f115-4cc5-8520-5792ab80390b.png)
是因为不是最新版吗?我重新pull过
-
> 该应用可以帮助用户进行指定文本的关键词获取
用户通过对该应用的部署,获取接口地址,向接口地址POST传入文本信息以及所需要的关键词个数,即可得到文本的关键词。
当然,可以针对上面的描述进行进一步的优化,例如增加算法:tf-idf等,即用户向接口POST:
- 原始的文本
- 所需要的关键词个数
- 采用的算法(textrank,tf-idf等)
即可获得目标结果。
…
-
when i am doing "kw_model = KeyBERT()",it was just still running but there was no output,what should i do to solve this problem
![image](https://user-images.githubusercontent.com/94151904/152669062-7…
-
## 注意事项
请确认下列注意事项:
* 我已仔细阅读下列文档,都没有找到答案:
- [首页文档](https://github.com/hankcs/HanLP)
- [wiki](https://github.com/hankcs/HanLP/wiki)
- [常见问题](https://github.com/hankcs/HanLP/wiki/FAQ)
*…
-
I see that we are using the networkx project for building the graph. But several graphs have much less memory prints and higher speed such as igraph. would love to know what the authors of this lib th…