其他分享
首页 > 其他分享> > lda 小说分析

lda 小说分析

作者:互联网

re包=》正则匹配包=》匹配字符 =》https://www.cnblogs.com/helloczh/articles/1648029.html

CountVectorizer是通过fit_transform函数将文本中的词语转换为词频矩阵=》https://blog.csdn.net/weixin_38278334/article/details/82320307

 

argsort函数
argsort函数返回的是数组值从小到大的索引值

Examples
--------
One dimensional array:一维数组

>>> x = np.array([3, 1, 2])
>>> np.argsort(x)
array([1, 2, 0])

标签:分析,lda,函数,数组,argsort,https,np,array,小说
来源: https://blog.csdn.net/zr7116/article/details/90449784