我有一个LDA的实现,它使用来自sklearn.decomposition的LatentDirichletAllocation,对于random_state,它需要一个整数。下面是一个示例: 代码语言:javascript 复制 lda_model = LatentDirichletAllocation(n_components=10, max_iter=10, learning_method='online', random_state=100, batch_size=128, evaluate_every = -...