当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python tf.compat.v1.Dimension.merge_with用法及代码示例


用法

merge_with(
    other
)

参数

  • other 另一个维度。

返回

  • 一个 Dimension 包含 selfother 的组合信息。

抛出

  • ValueError 如果selfother 不兼容(参见is_compatible_with)。

返回结合 selfother 中的信息的维度。

尺寸组合如下:

tf.compat.v1.Dimension(n)   .merge_with(tf.compat.v1.Dimension(n))     ==
tf.compat.v1.Dimension(n)
tf.compat.v1.Dimension(n)   .merge_with(tf.compat.v1.Dimension(None))  ==
tf.compat.v1.Dimension(n)
tf.compat.v1.Dimension(None).merge_with(tf.compat.v1.Dimension(n))     ==
tf.compat.v1.Dimension(n)
# equivalent to tf.compat.v1.Dimension(None)
tf.compat.v1.Dimension(None).merge_with(tf.compat.v1.Dimension(None))

# raises ValueError for n != m
tf.compat.v1.Dimension(n)   .merge_with(tf.compat.v1.Dimension(m))

相关用法


注:本文由纯净天空筛选整理自tensorflow.org大神的英文原创作品 tf.compat.v1.Dimension.merge_with。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。