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


Python tf.dtypes.DType.is_compatible_with用法及代码示例


用法

is_compatible_with(
    other
)

参数

  • other DType(或可以转换为 DType 的对象)。

返回

  • 如果 other DType 的张量将被隐式转换为此 DType ,则为真。

如果other DType 将转换为此 DType,则返回 True。

转换规则如下:

DType(T)       .is_compatible_with(DType(T))        == True

相关用法


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