codecamp

TensorFlow 统计分布(contrib)

代表统计分布的类和与其合作的操作。

统计分布类

代表批量统计分布的类。每个类都使用定义分布的参数进行初始化。

基础类

  • tf.contrib.distributions.ReparameterizationType
  • tf.contrib.distributions.Distribution

单变量(标量)分布

  • tf.contrib.distributions.Binomial
  • tf.contrib.distributions.Bernoulli
  • tf.contrib.distributions.BernoulliWithSigmoidProbs
  • tf.contrib.distributions.Beta
  • tf.contrib.distributions.Categorical
  • tf.contrib.distributions.Chi2
  • tf.contrib.distributions.Chi2WithAbsDf
  • tf.contrib.distributions.Exponential
  • tf.contrib.distributions.Gamma
  • tf.contrib.distributions.InverseGamma
  • tf.contrib.distributions.Laplace
  • tf.contrib.distributions.LaplaceWithSoftplusScale
  • tf.contrib.distributions.Normal
  • tf.contrib.distributions.NormalWithSoftplusScale
  • tf.contrib.distributions.Poisson
  • tf.contrib.distributions.StudentT
  • tf.contrib.distributions.StudentTWithAbsDfSoftplusScale
  • tf.contrib.distributions.Uniform

多变量分布

多变量正态分布

  • tf.contrib.distributions.MultivariateNormalDiag
  • tf.contrib.distributions.MultivariateNormalTriL
  • tf.contrib.distributions.MultivariateNormalDiagPlusLowRank
  • tf.contrib.distributions.MultivariateNormalDiagWithSoftplusScale

其他多变量分布

  • tf.contrib.distributions.Dirichlet
  • tf.contrib.distributions.DirichletMultinomial
  • tf.contrib.distributions.Multinomial
  • tf.contrib.distributions.WishartCholesky
  • tf.contrib.distributions.WishartFull

多变量实用程序

  • tf.contrib.distributions.matrix_diag_transform

变换分布

  • tf.contrib.distributions.TransformedDistribution
  • tf.contrib.distributions.QuantizedDistribution

混合模型

  • tf.contrib.distributions.Mixture

共轭先验的后验推理

将共轭先验/似然对变换为表示后验或后验预测的分布的函数。

共轭先前的正态似然

  • tf.contrib.distributions.normal_conjugates_known_scale_posterior
  • tf.contrib.distributions.normal_conjugates_known_scale_predictive

Kullback-Leibler 散度

  • tf.contrib.distributions.kl
  • tf.contrib.distributions.RegisterKL

实用程序

  • tf.contrib.distributions.softplus_inverse
TensorFlow 光谱函数
TensorFlow 字符串操作
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

TensorFlow 函数介绍

TensorFlow 函数模块:tf

TensorFlow的image模块

TensorFlow使用之tf.io

TensorFlow使用之tf.keras

TensorFlow函数教程:tf.keras.applications

TensorFlow函数教程:tf.keras.backend

TensorFlow使用之tf.metrics

TensorFlow使用之tf.nn

TensorFlow使用之tf.python_io

TensorFlow 功能函数

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }