文本摘要与主题模型技术解析
1. 研究论文概述
首先介绍了两篇研究论文:
- TRAFFIC: Recognizing Objects Using Hierarchical Reference Frame Transformations :由Richard S. Zemel撰写,描述了一种能在未分割图像中识别二维形状的模型,且不受形状方向的影响。
- Constrained Optimization Applied to the Parameter Setting Problem for Analog Circuits :由David Kirk、Kurt Fleischer、Lloyd Watts和Alan Bart共同完成,运用约束优化为两个电路(简单的3晶体管平方根电路和模拟VLSI人工耳蜗)选择工作参数。
2. 潜在狄利克雷分配(Latent Dirichlet Allocation,LDA)
Scikit - Learn库中包含了基于LDA的主题模型实现,以下是构建LDA主题模型的代码:
%%time
from sklearn.decomposition import LatentDirichletAllocation
lda_model = LatentDirichletAllocation(n_components =TOTAL_TOPICS,
max_iter=500, max_doc_update_iter=50, learning_method='online',
batch
超级会员免费看
订阅专栏 解锁全文
1009

被折叠的 条评论
为什么被折叠?



