From 2470331e073ad36c608c2199911176ab75e0b2af Mon Sep 17 00:00:00 2001 From: NEGU93 Date: Wed, 20 Jan 2021 11:59:32 +0100 Subject: [PATCH] Removed max pooling warning on docs --- cvnn/_version.py | 2 +- docs/index.rst | 2 +- docs/layers/complex_pooling_2d.rst | 3 --- tests/test_several_datasets.py | 2 +- 4 files changed, 3 insertions(+), 6 deletions(-) diff --git a/cvnn/_version.py b/cvnn/_version.py index 34c1db3..77139f6 100644 --- a/cvnn/_version.py +++ b/cvnn/_version.py @@ -1 +1 @@ -__version__ = '1.0.2' \ No newline at end of file +__version__ = '1.0.3' \ No newline at end of file diff --git a/docs/index.rst b/docs/index.rst index 232922a..6168381 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -3,7 +3,7 @@ Complex-Valued Neural Network (CVNN) ==================================== :Author: J. Agustin Barrachina -:Version: 1.0.2 of 01/20/2021 +:Version: 1.0.3 of 01/20/2021 Content diff --git a/docs/layers/complex_pooling_2d.rst b/docs/layers/complex_pooling_2d.rst index 887d5c4..e42fc27 100644 --- a/docs/layers/complex_pooling_2d.rst +++ b/docs/layers/complex_pooling_2d.rst @@ -28,9 +28,6 @@ Complex Max Pooling 2D Max pooling operation for 2D spatial data. Works for complex dtype using the absolute value to get the max. -.. warning:: - ATTENTION: This layer seams to be doing a strange casting to real when implemented in a Sequential model. It is therefore not correctly working for the moment. - **Complex dtype example** First, let's create a complex image diff --git a/tests/test_several_datasets.py b/tests/test_several_datasets.py index 54cea49..4508ddd 100644 --- a/tests/test_several_datasets.py +++ b/tests/test_several_datasets.py @@ -137,11 +137,11 @@ def random_dataset(): def test_datasets(): + run_gaussian_dataset_montecarlo(epochs=2, iterations=1) random_dataset() cifar10_test() fashion_mnist_example() mnist_example() - # run_gaussian_dataset_montecarlo(epochs=2, iterations=1) if __name__ == '__main__':