- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试使用 sklearn 库在 LatentDirichletAllocation 上应用 GridSearchCV。
vectorizer = CountVectorizer(analyzer='word',
min_df=10,
stop_words='english',
lowercase=True,
token_pattern='[a-zA-Z0-9]{3,}'
)
data_vectorized = vectorizer.fit_transform(doc_clean) #where doc_clean is processed text.
lda_model = LatentDirichletAllocation(n_components =number_of_topics,
max_iter=10,
learning_method='online',
random_state=100,
batch_size=128,
evaluate_every = -1,
n_jobs = -1,
)
search_params = {'n_components': [10, 15, 20, 25, 30], 'learning_decay': [.5, .7, .9]}
model = GridSearchCV(lda_model, param_grid=search_params)
model.fit(data_vectorized)
目前 GridSearchCV 使用近似对数似然作为分数来确定哪个是最佳模型。我想做的是将我的评分方法更改为基于 approximate perplexity代替模型。
根据 sklearn 的 documentation of GridSearchCV ,有一个我可以使用的评分参数。但是,我不知道如何应用困惑度作为评分方法,而且我在网上找不到任何人应用它的例子。这可能吗?
最佳答案
GridSearchCV
默认情况下将使用管道中最终估计器的 score()
函数。
make_scorer
可以在这里使用,但是为了计算困惑度,您还需要来自拟合模型的其他数据,通过 make_scorer
提供这些数据可能有点复杂。
您可以在此处对 LDA 进行包装,您可以在其中重新实现 score()
函数以返回 perplexity
。沿线的东西:
class MyLDAWithPerplexityScorer(LatentDirichletAllocation):
def score(self, X, y=None):
# You can change the options passed to perplexity here
score = super(MyLDAWithPerplexityScorer, self).perplexity(X, sub_sampling=False)
# Since perplexity is lower for better, so we do negative
return -1*score
然后可以在您的代码中使用它代替 LatentDirichletAllocation
,例如:
...
...
...
lda_model = MyLDAWithPerplexityScorer(n_components =number_of_topics,
....
....
n_jobs = -1,
)
...
...
关于python - sklearn.model_selection.GridSearchCV 对 LatentDirichletAllocation 的评分策略,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52986253/
我已经使用下面的命令训练了一个LDA模型,需要了解如何保存它。 lda_model = LatentDirichletAllocation(n_components=25, random_state=
我已经使用下面的命令训练了一个LDA模型,需要了解如何保存它。 lda_model = LatentDirichletAllocation(n_components=25, random_state=
我一直在使用 sklearn.decomposition.LatentDirichletAllocation 模块来探索文档语料库。经过多次迭代训练和调整模型(即添加停用词和同义词,改变主题数量),我
我正在尝试导入以下内容: from sklearn.model_selection import train_test_split 并出现以下错误,这是堆栈跟踪: ImportError
我正在尝试使用 sklearn 库在 LatentDirichletAllocation 上应用 GridSearchCV。 当前流水线如下所示: vectorizer = CountVectoriz
我正在尝试使用 sklearn 库在 LatentDirichletAllocation 上应用 GridSearchCV。 当前流水线如下所示: vectorizer = CountVectoriz
我在 SciKit-Learn 包中遇到了一些奇怪的问题。SciKit-Learn 包中有“分解”模块,其中应该包含 LatentDirichletAllocation([…]) 函数。请参阅此处的文
我正在尝试 LatentDirichletAllocation() class在 scikit-learn 中,evaluate_every 参数具有以下描述。 How often to evalua
关闭。这个问题需要debugging details .它目前不接受答案。 编辑问题以包含 desired behavior, a specific problem or error, and th
我正在尝试使用 LDA 获取最大化类之间分离的功能子空间,但脚本引发了错误 ValueError: Negative values in data passed to LatentDirichletA
每当我从 sklearn 导入任何 Tree 模块时,我都会遇到错误。示例代码如下 from sklearn.ensemble import ExtraTreesRegressor model = E
奇怪的是,fit 和 partial_fit 的代码似乎完全一样。 您可以在以下链接中查看代码: https://github.com/scikit-learn/scikit-learn/blob/c
我正在实现简单的 Scikit-Learn Pipeline 以在 Google Cloud ML Engine 中执行 LatentDirichletAllocation。目标是根据新数据预测主题。
我是一名优秀的程序员,十分优秀!