當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。