TF Complex Channels
TF complex channels contains a set of utility tools for working with complex numbers in a channel oriented way.
This approach is proposed and described in this blog post.
The primary purpose of this library and approach is to allow the community to push forward with academic research on complex number neural networks without waiting on ml library development.
Request for contributions
If an operation you want is not supported, please submit an issue or open a pull request
Basic Usage
import tf_complex_channels
print(x.dtype)
print(x.shape)
x = complex_to_channels(x)
print(x.dtype)
print(x.shape)
Documentation
Examples