When processing the following: ```python import tensorflow as tf def func2(t): pass @tf.function def func(): a = tf.constant([[1.0, 2.0], [3.0, 4.0]]) b = tf.constant([[1.0, 1.0], [0.0, 1.0]]) c = tf.matmul(a, b) tensor = tf.Tensor(c.op, 0, tf.float32) func2(tensor) func() ``` We found an error in determining whether we are dealing with a TensorFlow API. We found that the tensor analysis is empty: https://github.com/wala/ML/blob/93c96d889ecb4b70f58e3385d7969c3475343df4/com.ibm.wala.cast.python.ml.test/source/com/ibm/wala/cast/python/ml/test/TestTensorflowModel.java#L82