【发布时间】:2019-07-28 07:24:11
【问题描述】:
我试图将How to use a MultiVariateNormal distribution in the latest version of Tensorflow 中给出的示例推广到二维的正态分布,但不止一批。当我运行以下命令时:
from tensorflow_probability import distributions as tfd
import tensorflow as tf
tf.compat.v1.enable_eager_execution()
mu = [[1, 2],
[-1,-2]]
cov = [[1, 3./5],
[3./5, 2]]
cov = [cov, cov] # for demonstration purpose, use same cov for both batches
mvn = tfd.MultivariateNormalFullCovariance(
loc=mu,
covariance_matrix=cov)
# generate the pdf
X, Y = tf.meshgrid(tf.range(-3, 3, 0.1), tf.range(-3, 3, 0.1))
idx = tf.concat([tf.reshape(X, [-1, 1]), tf.reshape(Y,[-1,1])], axis =1)
prob = tf.reshape(mvn.prob(idx), tf.shape(X))
我收到不兼容的形状错误:
tensorflow.python.framework.errors_impl.InvalidArgumentError: Incompatible shapes: [3600,2] vs. [2,2] [Op:Sub] name: MultivariateNormalFullCovariance/log_prob/affine_linear_operator/inverse/sub/
我对文档 (https://www.tensorflow.org/api_docs/python/tf/contrib/distributions/MultivariateNormalFullCovariance) 的理解是,要计算 pdf,需要一个 [n_observation, n_dimensions] 张量(本例中就是这种情况:idx.shape = TensorShape([Dimension(3600), Dimension(2)]))。是不是我的数学算错了?
【问题讨论】:
标签: python tensorflow tensorflow-probability