我必须用 sklearn 做 NMF,我在这里使用了说明:http: //scikit-learn.org/stable/modules/generated/sklearn.decomposition.NMF.html
我想添加我的初始化矩阵 H,可以选择做 init='custom' 但我不知道如何给他矩阵 H。我试过了:
model = NMF(n_components=2, init='custom',H=myInitializationH random_state=0);
但它不起作用。
另外,有人知道如何修复我的矩阵并仅更新 W 吗?
编辑:
感谢你的回答
当我选择自定义选项时,我收到错误:
ValueError: input contains nan infinity or a value too large for dtype('float64')
但是,矩阵不包含任何 nan 或无穷大。此外,我为非常小的矩阵做了它,看看它是否很好,它不是:
import numpy as np
from sklearn.decomposition import NMF
x=np.ones((2,3));
#model = NMF(n_components=1, init='custom', solver='mu',beta_loss=1,max_iter=500,random_state=0,alpha=0,verbose=0, shuffle=False);
model = NMF(n_components=1, init='custom');
fixed_W = model.fit_transform(x,H=np.ones((1,3)));
fixed_H = model.components_;
print(np.matmul(fixed_W,fixed_H));
除非我做“随机”而不是“自定义”,否则我会遇到同样的错误。
你也遇到这种情况吗?为什么会这样?