tf.compat.v1.to_complex64

Casts a tensor to type complex64. (deprecated)

Migrate to TF2

This name was deprecated and removed in TF2, but has an exact replacement tf.cast(..., tf.complex64). There are no further issues with eager execution or tf.function.

Before:

tf.compat.v1.to_complex64(tf.constant(1. + 2.j, dtype=tf.complex128))
<tf.Tensor: shape=(), dtype=complex64, numpy=(1+2j)>

After:

tf.cast(tf.constant(1. + 2.j, dtype=tf.complex128), tf.complex64)
<tf.Tensor: shape=(), dtype=complex64, numpy=(1+2j)>