Cannot convert a symbolic Tensor (Neg_1:0) to a numpy array...
Hello. I am trying to derive with Tensorflow, and get an error telling me to report the behavior to the TensorFlow team. Hence this post. My code: from math import e def cal_sigma(y): return 1 / (1 + np.power(e, -y) ) @tf.function def ge...