当我使用这个随机生成器时:numpy.random.multinomial
,我不断得到:
ValueError: sum(pvals[:-1]) > 1.0
我总是传递这个 softmax 函数的输出:
def softmax(w, t = 1.0):
e = numpy.exp(numpy.array(w) / t)
dist = e / np.sum(e)
return dist
除了现在我收到此错误外,我还为参数(pvals
)添加了这个:
while numpy.sum(pvals) > 1:
pvals /= (1+1e-5)
但这并没有解决它。确保避免此错误的正确方法是什么?
编辑:这是包含此代码的函数
def get_MDN_prediction(vec):
coeffs = vec[::3]
means = vec[1::3]
stds = np.log(1+np.exp(vec[2::3]))
stds = np.maximum(stds, min_std)
coe = softmax(coeffs)
while np.sum(coe) > 1-1e-9:
coe /= (1+1e-5)
coeff = unhot(np.random.multinomial(1, coe))
return np.random.normal(means[coeff], stds[coeff])