zl程序教程

您现在的位置是:首页 >  其它

当前栏目

tf.executing_eagerly()

TF executing
2023-09-14 09:09:28 时间
import os

import tensorflow as tf

import cProfile
tf.executing_eagerly()
 
x = [[2.]]
m = tf.matmul(x, x)
print("hello, {}".format(m))
hello, [[4.]]