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


Python tf.experimental.Optional.from_value用法及代碼示例


用法

@staticmethod
from_value(
    value
)

參數

  • value 要包裝的值。該值必須可轉換為 tf.Tensortf.CompositeTensor

返回

返回包裝給定值的tf.experimental.Optional

optional = tf.experimental.Optional.from_value(42)
print(optional.has_value())
tf.Tensor(True, shape=(), dtype=bool)
print(optional.get_value())
tf.Tensor(42, shape=(), dtype=int32)

相關用法


注:本文由純淨天空篩選整理自tensorflow.org大神的英文原創作品 tf.experimental.Optional.from_value。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。