提问人:Mixalis Navridis 提问时间:12/23/2022 最后编辑:Mixalis Navridis 更新时间:12/23/2022 访问量:89
TensorFlow 无法使用 float 64 为 12 位小数设置较高精度的张量
TensorFlow unable to set large precision of tensors for 12 decimals with float 64
问:
您好,我正在使用 TensorFlow,我尝试加载浮点 64 张量值,但是当我加载到我松散的小数点时,有什么帮助吗?
tenosr = tf.constant([57.695030261422, 11.911734826863], dtype=tf.float64)
答: 暂无答案
评论
tenosr * 1e5 - tf.math.floor(tenosr * 1e5) gives [0.0261422, 0.4826863]