用法
merge_with(
other
)
参数
-
other
另一个维度。
返回
-
一个 Dimension 包含
self
和other
的组合信息。
抛出
-
ValueError
如果self
和other
不兼容(参见is_compatible_with)。
返回结合 self
和 other
中的信息的维度。
尺寸组合如下:
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))
相关用法
- Python tf.compat.v1.Dimension.__le__用法及代码示例
- Python tf.compat.v1.Dimension.__gt__用法及代码示例
- Python tf.compat.v1.Dimension.__mul__用法及代码示例
- Python tf.compat.v1.Dimension.__add__用法及代码示例
- Python tf.compat.v1.Dimension.__sub__用法及代码示例
- Python tf.compat.v1.Dimension.__floordiv__用法及代码示例
- Python tf.compat.v1.Dimension.__ge__用法及代码示例
- Python tf.compat.v1.Dimension.__mod__用法及代码示例
- Python tf.compat.v1.Dimension.__lt__用法及代码示例
- Python tf.compat.v1.DeviceSpec.parse_from_string用法及代码示例
- Python tf.compat.v1.DeviceSpec用法及代码示例
- Python tf.compat.v1.DeviceSpec.make_merged_spec用法及代码示例
- Python tf.compat.v1.DeviceSpec.replace用法及代码示例
- Python tf.compat.v1.distributions.Multinomial.stddev用法及代码示例
- Python tf.compat.v1.distribute.MirroredStrategy.experimental_distribute_dataset用法及代码示例
- Python tf.compat.v1.data.TFRecordDataset.interleave用法及代码示例
- Python tf.compat.v1.distributions.Bernoulli.cross_entropy用法及代码示例
- Python tf.compat.v1.Variable.eval用法及代码示例
- Python tf.compat.v1.train.FtrlOptimizer.compute_gradients用法及代码示例
- Python tf.compat.v1.layers.conv3d用法及代码示例
注:本文由纯净天空筛选整理自tensorflow.org大神的英文原创作品 tf.compat.v1.Dimension.merge_with。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。