codecamp

TensorFlow数学函数:tf.lbeta

函数:tf.lbeta
lbeta(
    x,
    name='lbeta'
)

定义在:tensorflow/python/ops/special_math_ops.py

参考指南:数学函数>基本数学函数

计算 \(ln(|Beta(x)|)\,沿着最后一个维度减少.

给定一维 z = [z_0,...,z_{K-1}],我们有如下定义:

$Beta(z) = \prod_j Gamma(z_j) / Gamma(\sum_j z_j)$

对于 n+1 维并且形状为 [N1, ..., Nn, K]的 x,我们定义:

$lbeta(x)[i1, ..., in] = Log(|Beta(x[i1, ..., in, :])|)$$

换句话说,最后一个维度被视为 z 向量.

注意,如果 z = [u, v],则:\(β (z) = int_0^1 t^{u-1} (1 t) ^ {v-1} dt \),它定义了传统的双变量 β 函数.

如果最后一个维度为空,则按照约定,空集的总和为零,而乘积为1.

参数:

  • x:秩为 n+1 的张量,n >= 0 并且类型为 float 或 double.
  • name:操作的名称(可选).

返回值:

对数 \(|Beta(x)|\) 沿最后一个维度减小.


TensorFlow使用isnan函数
TensorFlow函数:tf.less
温馨提示
下载编程狮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; }