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 Mar 1, 2022. It is now read-only.
我看使用方法里没有设置这两个阈值的参数
这两个参数是不可变的吗
corpus: 必需,file open()、database connection或list
example:corpus = open(file_name, 'r', encoding='utf-8')
corpus = conn.execute(query)
corpus = list(***)
top_k: float or int,表示短语抽取的比例或个数
chunk_size: int,用chunksize分块大小来读取文件
min_n: int,抽取ngram及以上
max_n: int,抽取ngram及以下
min_freq: int,抽取目标的最低词频
top_k是按照词频排序,还是按照左右邻字丰富程度或者内部凝聚程度排序
The text was updated successfully, but these errors were encountered: