├── .gitignore ├── LICENSE ├── README.md ├── __init__.py ├── img └── nn.png └── src ├── __init__.py ├── activation.py ├── complex.py ├── layers.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- 1 | /.vscode -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Medabid1/ComplexValuedCNN/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Medabid1/ComplexValuedCNN/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /img/nn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Medabid1/ComplexValuedCNN/HEAD/img/nn.png -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/activation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Medabid1/ComplexValuedCNN/HEAD/src/activation.py -------------------------------------------------------------------------------- /src/complex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Medabid1/ComplexValuedCNN/HEAD/src/complex.py -------------------------------------------------------------------------------- /src/layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Medabid1/ComplexValuedCNN/HEAD/src/layers.py -------------------------------------------------------------------------------- /src/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Medabid1/ComplexValuedCNN/HEAD/src/utils.py --------------------------------------------------------------------------------