conv.py 69.5 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796
#!/usr/bin/env python
# -*- coding: utf-8 -*-

# Contributors : Titouan Parcollet
# Initial Authors: Chiheb Trabelsi

from keras import backend as K
from keras import activations, initializers, regularizers, constraints
from keras.layers import Lambda, Layer, InputSpec, Convolution1D, Convolution2D, add, multiply, Activation, Input, concatenate
from keras.layers.convolutional import _Conv
from keras.layers.merge import _Merge
from keras.layers.recurrent import Recurrent
from keras.utils import conv_utils
from keras.models import Model
import numpy as np
from theano.sandbox.rng_mrg import MRG_RandomStreams as RandomStreams
from .fft import fft, ifft, fft2, ifft2
from .bn import ComplexBN as complex_normalization
from .bn import sqrt_init
from .init import *
from .norm import LayerNormalization, ComplexLayerNorm
import sys


#####################################################################
#				   Quaternion Implementations					  #
#####################################################################

class QuaternionConv(Layer):
	"""Abstract nD quaternion convolution layer.
	This layer creates a quaternion convolution kernel that is convolved
	with the layer input to produce a tensor of outputs.
	If `use_bias` is True, a bias vector is created and added to the outputs.
	Finally, if `activation` is not `None`,
	it is applied to the outputs as well.
	# Arguments
		rank: An integer, the rank of the convolution,
			e.g. "2" for 2D convolution.
		filters: Integer, the dimensionality of the output space, i.e,
			the number of quaternion feature maps. It is also the effective number
			of feature maps for each of the real and imaginary parts.
			(i.e. the number of quaternion filters in the convolution)
			The total effective number of filters is 2 x filters.
		kernel_size: An integer or tuple/list of n integers, specifying the
			dimensions of the convolution window.
		strides: An integer or tuple/list of n integers,
			spfying the strides of the convolution.
			Specifying any stride value != 1 is incompatible with specifying
			any `dilation_rate` value != 1.
		padding: One of `"valid"` or `"same"` (case-insensitive).
		data_format: A string,
			one of `channels_last` (default) or `channels_first`.
			The ordering of the dimensions in the inputs.
			`channels_last` corresponds to inputs with shape
			`(batch, ..., channels)` while `channels_first` corresponds to
			inputs with shape `(batch, channels, ...)`.
			It defaults to the `image_data_format` value found in your
			Keras config file at `~/.keras/keras.json`.
			If you never set it, then it will be "channels_last".
		dilation_rate: An integer or tuple/list of n integers, specifying
			the dilation rate to use for dilated convolution.
			Currently, specifying any `dilation_rate` value != 1 is
			incompatible with specifying any `strides` value != 1.
		activation: Activation function to use
			(see keras.activations).
			If you don't specify anything, no activation is applied
			(ie. "linear" activation: `a(x) = x`).
		use_bias: Boolean, whether the layer uses a bias vector.
		normalize_weight: Boolean, whether the layer normalizes its quaternion
			weights before convolving the quaternion input.
			The quaternion normalization performed is similar to the one
			for the batchnorm. Each of the quaternion kernels are centred and multiplied by
			the inverse square root of covariance matrix.
			Then, a quaternion multiplication is perfromed as the normalized weights are
			multiplied by the quaternion scaling factor gamma.
		kernel_initializer: Initializer for the quaternion `kernel` weights matrix.
			By default it is 'quaternion'. The 'quaternion_independent' 
			and the usual initializers could also be used.
			(see keras.initializers and init.py).
		bias_initializer: Initializer for the bias vector
			(see keras.initializers).
		kernel_regularizer: Regularizer function applied to
			the `kernel` weights matrix
			(see keras.regularizers).
		bias_regularizer: Regularizer function applied to the bias vector
			(see keras.regularizers).
		activity_regularizer: Regularizer function applied to
			the output of the layer (its "activation").
			(see keras.regularizers).
		kernel_constraint: Constraint function applied to the kernel matrix
			(see keras.constraints).
		bias_constraint: Constraint function applied to the bias vector
			(see keras.constraints).
		spectral_parametrization: Whether or not to use a spectral
			parametrization of the parameters.
	"""

	def __init__(self, rank,
				 filters,
				 kernel_size,
				 strides=1,
				 padding='valid',
				 data_format=None,
				 dilation_rate=1,
				 activation=None,
				 use_bias=True,
				 normalize_weight=False,
				 kernel_initializer='quaternion',
				 bias_initializer='zeros',
				 gamma_diag_initializer=sqrt_init,
				 gamma_off_initializer='zeros',
				 kernel_regularizer=None,
				 bias_regularizer=None,
				 gamma_diag_regularizer=None,
				 gamma_off_regularizer=None,
				 activity_regularizer=None,
				 kernel_constraint=None,
				 bias_constraint=None,
				 gamma_diag_constraint=None,
				 gamma_off_constraint=None,
				 init_criterion='he',
				 seed=None,
				 spectral_parametrization=False,
				 epsilon=1e-7,
				 **kwargs):
		super(QuaternionConv, self).__init__(**kwargs)
		self.rank = rank
		self.filters = filters
		self.kernel_size = conv_utils.normalize_tuple(kernel_size, rank, 'kernel_size')
		self.strides = conv_utils.normalize_tuple(strides, rank, 'strides')
		self.padding = conv_utils.normalize_padding(padding)
		self.data_format = 'channels_last' if rank == 1 else conv_utils.normalize_data_format(data_format)
		self.dilation_rate = conv_utils.normalize_tuple(dilation_rate, rank, 'dilation_rate')
		self.activation = activations.get(activation)
		self.use_bias = use_bias
		self.normalize_weight = normalize_weight
		self.init_criterion = init_criterion
		self.spectral_parametrization = spectral_parametrization
		self.epsilon = epsilon
		self.kernel_initializer = sanitizedInitGet(kernel_initializer)
		self.bias_initializer = sanitizedInitGet(bias_initializer)
		self.gamma_diag_initializer = sanitizedInitGet(gamma_diag_initializer)
		self.gamma_off_initializer = sanitizedInitGet(gamma_off_initializer)
		self.kernel_regularizer = regularizers.get(kernel_regularizer)
		self.bias_regularizer = regularizers.get(bias_regularizer)
		self.gamma_diag_regularizer = regularizers.get(gamma_diag_regularizer)
		self.gamma_off_regularizer = regularizers.get(gamma_off_regularizer)
		self.activity_regularizer = regularizers.get(activity_regularizer)
		self.kernel_constraint = constraints.get(kernel_constraint)
		self.bias_constraint = constraints.get(bias_constraint)
		self.gamma_diag_constraint = constraints.get(gamma_diag_constraint)
		self.gamma_off_constraint = constraints.get(gamma_off_constraint)
		if seed is None:
			self.seed = np.random.randint(1, 10e6)
		else:
			self.seed = seed
		self.input_spec = InputSpec(ndim=self.rank + 2)

	def build(self, input_shape):

		if self.data_format == 'channels_first':
			channel_axis = 1
		else:
			channel_axis = -1
		
		if input_shape[channel_axis] is None:
			raise ValueError('The channel dimension of the inputs '
							 'should be defined. Found `None`.')
		
		input_dim = input_shape[channel_axis] // 4
		self.kernel_shape = self.kernel_size + (input_dim , self.filters)
		# The kernel shape here is a complex kernel shape:
		#   nb of complex feature maps = input_dim;
		#   nb of output complex feature maps = self.filters;
		#   imaginary kernel size = real kernel size 
		#						 = self.kernel_size 
		#						 = complex kernel size
		if self.kernel_initializer in {'quaternion', 'quaternion_independent'}:
			kls = {'quaternion':			 QuaternionInit,
				   'quaternion_independent': QuaternionIndependentFilters}[self.kernel_initializer]
			kern_init = kls(
				kernel_size=self.kernel_size,
				input_dim=input_dim,
				weight_dim=self.rank,
				nb_filters=self.filters,
				criterion=self.init_criterion
			)
		else:
			kern_init = self.kernel_initializer
		
		self.kernel = self.add_weight(
			self.kernel_shape,
			initializer=kern_init,
			name='kernel',
			regularizer=self.kernel_regularizer,
			constraint=self.kernel_constraint
		)
		
		# Don't understand the purpose of this block
		if self.normalize_weight:
			gamma_shape = (input_dim * self.filters,)
			self.gamma_rr = self.add_weight(
				shape=gamma_shape,
				name='gamma_rr',
				initializer=self.gamma_diag_initializer,
				regularizer=self.gamma_diag_regularizer,
				constraint=self.gamma_diag_constraint
			)

			self.gamma_ri = self.add_weight(
				shape=gamma_shape,
				name='gamma_ri',
				initializer=self.gamma_diag_initializer,
				regularizer=self.gamma_diag_regularizer,
				constraint=self.gamma_diag_constraint
			)
			self.gamma_rj = self.add_weight(
				shape=gamma_shape,
				name='gamma_rj',
				initializer=self.gamma_diag_initializer,
				regularizer=self.gamma_diag_regularizer,
				constraint=self.gamma_diag_constraint
			)
			self.gamma_rk = self.add_weight(
				shape=gamma_shape,
				name='gamma_rk',
				initializer=self.gamma_off_initializer,
				regularizer=self.gamma_off_regularizer,
				constraint=self.gamma_off_constraint
			)
			self.gamma_ii = self.add_weight(
				shape=gamma_shape,
				name='gamma_ii',
				initializer=self.gamma_diag_initializer,
				regularizer=self.gamma_diag_regularizer,
				constraint=self.gamma_diag_constraint
			)

			self.gamma_ij = self.add_weight(
				shape=gamma_shape,
				name='gamma_ij',
				initializer=self.gamma_diag_initializer,
				regularizer=self.gamma_diag_regularizer,
				constraint=self.gamma_diag_constraint
			)
			self.gamma_ik = self.add_weight(
				shape=gamma_shape,
				name='gamma_ik',
				initializer=self.gamma_diag_initializer,
				regularizer=self.gamma_diag_regularizer,
				constraint=self.gamma_diag_constraint
			)
			self.gamma_jj = self.add_weight(
				shape=gamma_shape,
				name='gamma_jj',
				initializer=self.gamma_off_initializer,
				regularizer=self.gamma_off_regularizer,
				constraint=self.gamma_off_constraint
			)
			self.gamma_jk = self.add_weight(
				shape=gamma_shape,
				name='gamma_jk',
				initializer=self.gamma_diag_initializer,
				regularizer=self.gamma_diag_regularizer,
				constraint=self.gamma_diag_constraint
			)
			self.gamma_kk = self.add_weight(
				shape=gamma_shape,
				name='gamma_kk',
				initializer=self.gamma_off_initializer,
				regularizer=self.gamma_off_regularizer,
				constraint=self.gamma_off_constraint
			)
		else:
			self.gamma_rr = None
			self.gamma_ri = None
			self.gamma_rj = None
			self.gamma_rk = None
			self.gamma_ii = None
			self.gamma_ij = None
			self.gamma_ik = None
			self.gamma_jj = None
			self.gamma_jk = None
			self.gamma_kk = None
		
		#End of non understanded block

		if self.use_bias:
			bias_shape = (4 * self.filters,)
			self.bias = self.add_weight(
				bias_shape,
				initializer=self.bias_initializer,
				name='bias',
				regularizer=self.bias_regularizer,
				constraint=self.bias_constraint
			)

		else:
			self.bias = None

		# Set input spec.
		self.input_spec = InputSpec(ndim=self.rank + 2,
									axes={channel_axis: input_dim * 4})
		self.built = True

	def call(self, inputs):
		channel_axis = 1 if self.data_format == 'channels_first' else -1
		input_dim	= K.shape(inputs)[channel_axis] // 4
		index2 = self.filters*2
		index3 = self.filters*3
		if self.rank == 1:
			f_r   = self.kernel[:, :, :self.filters]
			f_i   = self.kernel[:, :, self.filters:index2]
			f_j   = self.kernel[:, :, index2:index3]
			f_k   = self.kernel[:, :, index3:]
		elif self.rank == 2:
			f_r   = self.kernel[:, :, :, :self.filters]
			f_i   = self.kernel[:, :, :, self.filters:index2]
			f_j   = self.kernel[:, :, :, index2:index3]
			f_k   = self.kernel[:, :, :, index3:]
		elif self.rank == 3:
			f_r   = self.kernel[:, :, :, :, :self.filters]
			f_i   = self.kernel[:, :, :, :, self.filters:index2]
			f_j   = self.kernel[:, :, :, :, index2:index3]
			f_k   = self.kernel[:, :, :, :, index3:]

		convArgs = {"strides":	   self.strides[0]	   if self.rank == 1 else self.strides,
					"padding":	   self.padding,
					"data_format":   self.data_format,
					"dilation_rate": self.dilation_rate[0] if self.rank == 1 else self.dilation_rate}
		convFunc = {1: K.conv1d,
					2: K.conv2d,
					3: K.conv3d}[self.rank]

		# processing if the weights are assumed to be represented in the spectral domain
		# Do we conserve this for quaternions ? Currently no

		if self.spectral_parametrization:
			print("Quaternion spectral weights parametrization not implemented yet, aborting.")
			sys.exit(1)
			if   self.rank == 1:
				f_r = K.permute_dimensions(f_r, (2,1,0))
				f_i = K.permute_dimensions(f_i, (2,1,0))
				f	  = K.concatenate([f_r, f_i], axis=0)
				fshape = K.shape(f)
				f	  = K.reshape(f, (fshape[0] * fshape[1], fshape[2]))
				f	  = ifft(f)
				f	  = K.reshape(f, fshape)
				f_r = f[:fshape[0]//2]
				f_i = f[fshape[0]//2:]
				f_r = K.permute_dimensions(f_r, (2,1,0))
				f_i = K.permute_dimensions(f_i, (2,1,0))
			elif self.rank == 2:
				f_r = K.permute_dimensions(f_r, (3,2,0,1))
				f_i = K.permute_dimensions(f_i, (3,2,0,1))
				f	  = K.concatenate([f_r, f_i], axis=0)
				fshape = K.shape(f)
				f	  = K.reshape(f, (fshape[0] * fshape[1], fshape[2], fshape[3]))
				f	  = ifft2(f)
				f	  = K.reshape(f, fshape)
				f_r = f[:fshape[0]//2]
				f_i = f[fshape[0]//2:]
				f_r = K.permute_dimensions(f_r, (2,3,1,0))
				f_i = K.permute_dimensions(f_i, (2,3,1,0))

		# In case of weight normalization, real and imaginary weights are normalized

		if self.normalize_weight:
			
			print("Quaternion weights normalization not implemented yet, aborting.")
			sys.exit(1)
			ker_shape = self.kernel_shape
			nb_kernels = ker_shape[-2] * ker_shape[-1]
			kernel_shape_4_norm = (np.prod(self.kernel_size), nb_kernels)
			reshaped_f_r = K.reshape(f_r, kernel_shape_4_norm)
			reshaped_f_i = K.reshape(f_i, kernel_shape_4_norm)
			reduction_axes = list(range(2))
			del reduction_axes[-1]
			mu_real = K.mean(reshaped_f_r, axis=reduction_axes)
			mu_imag = K.mean(reshaped_f_i, axis=reduction_axes)

			broadcast_mu_shape = [1] * 2
			broadcast_mu_shape[-1] = nb_kernels
			broadcast_mu_real = K.reshape(mu_real, broadcast_mu_shape)
			broadcast_mu_imag = K.reshape(mu_imag, broadcast_mu_shape)
			reshaped_f_r_centred = reshaped_f_r - broadcast_mu_real
			reshaped_f_i_centred = reshaped_f_i - broadcast_mu_imag
			Vrr = K.mean(reshaped_f_r_centred ** 2, axis=reduction_axes) + self.epsilon
			Vii = K.mean(reshaped_f_i_centred ** 2, axis=reduction_axes) + self.epsilon
			Vri = K.mean(reshaped_f_r_centred * reshaped_f_i_centred,
						 axis=reduction_axes) + self.epsilon
			
			normalized_weight = complex_normalization(
				K.concatenate([reshaped_f_r, reshaped_f_i], axis=-1),
				Vrr, Vii, Vri,
				beta = None,
				gamma_rr = self.gamma_rr,
				gamma_ri = self.gamma_ri,
				gamma_ii = self.gamma_ii,
				scale=True,
				center=False,
				axis=-1
			)

			normalized_real = normalized_weight[:, :nb_kernels]
			normalized_imag = normalized_weight[:, nb_kernels:]
			f_r = K.reshape(normalized_real, self.kernel_shape)
			f_i = K.reshape(normalized_imag, self.kernel_shape)
		
		#
		# Performing quaternion convolution
		#
		
		f_r._keras_shape = self.kernel_shape
		f_i._keras_shape = self.kernel_shape
		f_j._keras_shape = self.kernel_shape
		f_k._keras_shape = self.kernel_shape

		cat_kernels_4_r = K.concatenate([f_r, -f_i, -f_j, -f_k], axis=-2)
		cat_kernels_4_i = K.concatenate([f_i, f_r, -f_k, f_j], axis=-2)
		cat_kernels_4_j = K.concatenate([f_j, f_k, f_r, -f_i], axis=-2)
		cat_kernels_4_k = K.concatenate([f_k, -f_j, f_i, f_r], axis=-2)

		cat_kernels_4_quaternion = K.concatenate([cat_kernels_4_r, cat_kernels_4_i, cat_kernels_4_j, cat_kernels_4_k], axis=-1)
		cat_kernels_4_quaternion._keras_shape = self.kernel_size + (4 * input_dim, 4 * self.filters)

		output = convFunc(inputs, cat_kernels_4_quaternion, **convArgs)

		if self.use_bias:
			output = K.bias_add(
				output,
				self.bias,
				data_format=self.data_format
			)

		if self.activation is not None:
			output = self.activation(output)

		return output

	def compute_output_shape(self, input_shape):
		if self.data_format == 'channels_last':
			space = input_shape[1:-1]
			new_space = []
			for i in range(len(space)):
				new_dim = conv_utils.conv_output_length(
					space[i],
					self.kernel_size[i],
					padding=self.padding,
					stride=self.strides[i],
					dilation=self.dilation_rate[i]
				)
				new_space.append(new_dim)
			return (input_shape[0],) + tuple(new_space) + (4 * self.filters,)
		if self.data_format == 'channels_first':
			space = input_shape[2:]
			new_space = []
			for i in range(len(space)):
				new_dim = conv_utils.conv_output_length(
					space[i],
					self.kernel_size[i],
					padding=self.padding,
					stride=self.strides[i],
					dilation=self.dilation_rate[i])
				new_space.append(new_dim)
			return (input_shape[0],) + (4 * self.filters,) + tuple(new_space)

	def get_config(self):
		config = {
			'rank': self.rank,
			'filters': self.filters,
			'kernel_size': self.kernel_size,
			'strides': self.strides,
			'padding': self.padding,
			'data_format': self.data_format,
			'dilation_rate': self.dilation_rate,
			'activation': activations.serialize(self.activation),
			'use_bias': self.use_bias,
			'normalize_weight': self.normalize_weight,
			'kernel_initializer': sanitizedInitSer(self.kernel_initializer),
			'bias_initializer': sanitizedInitSer(self.bias_initializer),
			'gamma_diag_initializer': sanitizedInitSer(self.gamma_diag_initializer),
			'gamma_off_initializer': sanitizedInitSer(self.gamma_off_initializer),
			'kernel_regularizer': regularizers.serialize(self.kernel_regularizer),
			'bias_regularizer': regularizers.serialize(self.bias_regularizer),
			'gamma_diag_regularizer': regularizers.serialize(self.gamma_diag_regularizer),
			'gamma_off_regularizer': regularizers.serialize(self.gamma_off_regularizer),
			'activity_regularizer': regularizers.serialize(self.activity_regularizer),
			'kernel_constraint': constraints.serialize(self.kernel_constraint),
			'bias_constraint': constraints.serialize(self.bias_constraint),
			'gamma_diag_constraint': constraints.serialize(self.gamma_diag_constraint),
			'gamma_off_constraint': constraints.serialize(self.gamma_off_constraint),
			'init_criterion': self.init_criterion,
			'spectral_parametrization': self.spectral_parametrization,
		}
		base_config = super(QuaternionConv, self).get_config()
		return dict(list(base_config.items()) + list(config.items()))



class QuaternionConv1D(QuaternionConv):
	"""1D quaternion convolution layer.
	This layer creates a quaternion convolution kernel that is convolved
	with a quaternion input layer over a single quaternion spatial (or temporal) dimension
	to produce a quaternion output tensor.
	If `use_bias` is True, a bias vector is created and added to the quaternion output.
	Finally, if `activation` is not `None`,
	it is applied each of the real and imaginary parts of the output.
	When using this layer as the first layer in a model,
	provide an `input_shape` argument
	(tuple of integers or `None`, e.g.
	`(10, 128)` for sequences of 10 vectors of 128-dimensional vectors,
	or `(None, 128)` for variable-length sequences of 128-dimensional vectors.
	# Arguments
		filters: Integer, the dimensionality of the output space, i.e,
			the number of quaternion feature maps. It is also the effective number
			of feature maps for each of the real and imaginary parts.
			(i.e. the number of quaternion filters in the convolution)
			The total effective number of filters is 2 x filters.
		kernel_size: An integer or tuple/list of n integers, specifying the
			dimensions of the convolution window.
		strides: An integer or tuple/list of a single integer,
			specifying the stride length of the convolution.
			Specifying any stride value != 1 is incompatible with specifying
			any `dilation_rate` value != 1.
		padding: One of `"valid"`, `"causal"` or `"same"` (case-insensitive).
			`"causal"` results in causal (dilated) convolutions, e.g. output[t]
			does not depend on input[t+1:]. Useful when modeling temporal data
			where the model should not violate the temporal order.
			See [WaveNet: A Generative Model for Raw Audio, section 2.1](https://arxiv.org/abs/1609.03499).
		dilation_rate: an integer or tuple/list of a single integer, specifying
			the dilation rate to use for dilated convolution.
			Currently, specifying any `dilation_rate` value != 1 is
			incompatible with specifying any `strides` value != 1.
		activation: Activation function to use
			(see keras.activations).
			If you don't specify anything, no activation is applied
			(ie. "linear" activation: `a(x) = x`).
		use_bias: Boolean, whether the layer uses a bias vector.
		normalize_weight: Boolean, whether the layer normalizes its quaternion
			weights before convolving the quaternion input.
			The quaternion normalization performed is similar to the one
			for the batchnorm. Each of the quaternion kernels are centred and multiplied by
			the inverse square root of covariance matrix.
			Then, a quaternion multiplication is perfromed as the normalized weights are
			multiplied by the quaternion scaling factor gamma.
		kernel_initializer: Initializer for the quaternion `kernel` weights matrix.
			By default it is 'quaternion'. The 'quaternion_independent' 
			and the usual initializers could also be used.
			(see keras.initializers and init.py).
		bias_initializer: Initializer for the bias vector
			(see keras.initializers).
		kernel_regularizer: Regularizer function applied to
			the `kernel` weights matrix
			(see keras.regularizers).
		bias_regularizer: Regularizer function applied to the bias vector
			(see keras.regularizers).
		activity_regularizer: Regularizer function applied to
			the output of the layer (its "activation").
			(see keras.regularizers).
		kernel_constraint: Constraint function applied to the kernel matrix
			(see keras.constraints).
		bias_constraint: Constraint function applied to the bias vector
			(see keras.constraints).
		spectral_parametrization: Whether or not to use a spectral
			parametrization of the parameters.
	# Input shape
		3D tensor with shape: `(batch_size, steps, input_dim)`
	# Output shape
		3D tensor with shape: `(batch_size, new_steps, 2 x filters)`
		`steps` value might have changed due to padding or strides.
	"""

	def __init__(self, filters,
				 kernel_size,
				 strides=1,
				 padding='valid',
				 dilation_rate=1,
				 activation=None,
				 use_bias=True,
				 kernel_initializer='quaternion',
				 bias_initializer='zeros',
				 kernel_regularizer=None,
				 bias_regularizer=None,
				 activity_regularizer=None,
				 kernel_constraint=None,
				 bias_constraint=None,
				 seed=None,
				 init_criterion='he',
				 spectral_parametrization=False,
				 **kwargs):
		super(QuaternionConv1D, self).__init__(
			rank=1,
			filters=filters,
			kernel_size=kernel_size,
			strides=strides,
			padding=padding,
			data_format='channels_last',
			dilation_rate=dilation_rate,
			activation=activation,
			use_bias=use_bias,
			kernel_initializer=kernel_initializer,
			bias_initializer=bias_initializer,
			kernel_regularizer=kernel_regularizer,
			bias_regularizer=bias_regularizer,
			activity_regularizer=activity_regularizer,
			kernel_constraint=kernel_constraint,
			bias_constraint=bias_constraint,
			init_criterion=init_criterion,
			spectral_parametrization=spectral_parametrization,
			**kwargs)

	def get_config(self):
		config = super(QuaternionConv1D, self).get_config()
		config.pop('rank')
		config.pop('data_format')
		return config


class QuaternionConv2D(QuaternionConv):
	"""2D Quaternion convolution layer (e.g. spatial convolution over images).
	This layer creates a quaternion convolution kernel that is convolved
	with a quaternion input layer to produce a quaternion output tensor. If `use_bias` 
	is True, a quaternion bias vector is created and added to the outputs.
	Finally, if `activation` is not `None`, it is applied to both the
	real and imaginary parts of the output.
	When using this layer as the first layer in a model,
	provide the keyword argument `input_shape`
	(tuple of integers, does not include the sample axis),
	e.g. `input_shape=(128, 128, 3)` for 128x128 RGB pictures
	in `data_format="channels_last"`.
	# Arguments
		filters: Integer, the dimensionality of the quaternion output space
			(i.e, the number quaternion feature maps in the convolution).
			The total effective number of filters or feature maps is 2 x filters.
		kernel_size: An integer or tuple/list of 2 integers, specifying the
			width and height of the 2D convolution window.
			Can be a single integer to specify the same value for
			all spatial dimensions.
		strides: An integer or tuple/list of 2 integers,
			specifying the strides of the convolution along the width and height.
			Can be a single integer to specify the same value for
			all spatial dimensions.
			Specifying any stride value != 1 is incompatible with specifying
			any `dilation_rate` value != 1.
		padding: one of `"valid"` or `"same"` (case-insensitive).
		data_format: A string,
			one of `channels_last` (default) or `channels_first`.
			The ordering of the dimensions in the inputs.
			`channels_last` corresponds to inputs with shape
			`(batch, height, width, channels)` while `channels_first`
			corresponds to inputs with shape
			`(batch, channels, height, width)`.
			It defaults to the `image_data_format` value found in your
			Keras config file at `~/.keras/keras.json`.
			If you never set it, then it will be "channels_last".
		dilation_rate: an integer or tuple/list of 2 integers, specifying
			the dilation rate to use for dilated convolution.
			Can be a single integer to specify the same value for
			all spatial dimensions.
			Currently, specifying any `dilation_rate` value != 1 is
			incompatible with specifying any stride value != 1.
		activation: Activation function to use
			(see keras.activations).
			If you don't specify anything, no activation is applied
			(ie. "linear" activation: `a(x) = x`).
		use_bias: Boolean, whether the layer uses a bias vector.
		normalize_weight: Boolean, whether the layer normalizes its quaternion
			weights before convolving the quaternion input.
			The quaternion normalization performed is similar to the one
			for the batchnorm. Each of the quaternion kernels are centred and multiplied by
			the inverse square root of covariance matrix.
			Then, a quaternion multiplication is perfromed as the normalized weights are
			multiplied by the quaternion scaling factor gamma.
		kernel_initializer: Initializer for the quaternion `kernel` weights matrix.
			By default it is 'quaternion'. The 'quaternion_independent' 
			and the usual initializers could also be used.
			(see keras.initializers and init.py).
		bias_initializer: Initializer for the bias vector
			(see keras.initializers).
		kernel_regularizer: Regularizer function applied to
			the `kernel` weights matrix
			(see keras.regularizers).
		bias_regularizer: Regularizer function applied to the bias vector
			(see keras.regularizers).
		activity_regularizer: Regularizer function applied to
			the output of the layer (its "activation").
			(see keras.regularizers).
		kernel_constraint: Constraint function applied to the kernel matrix
			(see keras.constraints).
		bias_constraint: Constraint function applied to the bias vector
			(see keras.constraints).
		spectral_parametrization: Whether or not to use a spectral
			parametrization of the parameters.
	# Input shape
		4D tensor with shape:
		`(samples, channels, rows, cols)` if data_format='channels_first'
		or 4D tensor with shape:
		`(samples, rows, cols, channels)` if data_format='channels_last'.
	# Output shape
		4D tensor with shape:
		`(samples, 2 x filters, new_rows, new_cols)` if data_format='channels_first'
		or 4D tensor with shape:
		`(samples, new_rows, new_cols, 2 x filters)` if data_format='channels_last'.
		`rows` and `cols` values might have changed due to padding.
	"""

	def __init__(self, filters,
				 kernel_size,
				 strides=(1, 1),
				 padding='valid',
				 data_format=None,
				 dilation_rate=(1, 1),
				 activation=None,
				 use_bias=True,
				 kernel_initializer='quaternion',
				 bias_initializer='zeros',
				 kernel_regularizer=None,
				 bias_regularizer=None,
				 activity_regularizer=None,
				 kernel_constraint=None,
				 bias_constraint=None,
				 seed=None,
				 init_criterion='he',
				 spectral_parametrization=False,
				 **kwargs):
		super(QuaternionConv2D, self).__init__(
			rank=2,
			filters=filters,
			kernel_size=kernel_size,
			strides=strides,
			padding=padding,
			data_format=data_format,
			dilation_rate=dilation_rate,
			activation=activation,
			use_bias=use_bias,
			kernel_initializer=kernel_initializer,
			bias_initializer=bias_initializer,
			kernel_regularizer=kernel_regularizer,
			bias_regularizer=bias_regularizer,
			activity_regularizer=activity_regularizer,
			kernel_constraint=kernel_constraint,
			bias_constraint=bias_constraint,
			init_criterion=init_criterion,
			spectral_parametrization=spectral_parametrization,
			**kwargs)

	def get_config(self):
		config = super(QuaternionConv2D, self).get_config()
		config.pop('rank')
		return config


class QuaternionConv3D(QuaternionConv):
	"""3D convolution layer (e.g. spatial convolution over volumes).
	This layer creates a quaternion convolution kernel that is convolved
	with a quaternion layer input to produce a quaternion output tensor.
	If `use_bias` is True,
	a quaternion bias vector is created and added to the outputs. Finally, if
	`activation` is not `None`, it is applied to each of the real and imaginary
	parts of the output.
	When using this layer as the first layer in a model,
	provide the keyword argument `input_shape`
	(tuple of integers, does not include the sample axis),
	e.g. `input_shape=(2, 128, 128, 128, 3)` for 128x128x128 volumes
	with 3 channels,
	in `data_format="channels_last"`.
	# Arguments
		filters: Integer, the dimensionality of the quaternion output space
			(i.e, the number quaternion feature maps in the convolution).
			The total effective number of filters or feature maps is 2 x filters.
		kernel_size: An integer or tuple/list of 3 integers, specifying the
			width and height of the 3D convolution window.
			Can be a single integer to specify the same value for
			all spatial dimensions.
		strides: An integer or tuple/list of 3 integers,
			specifying the strides of the convolution along each spatial dimension.
			Can be a single integer to specify the same value for
			all spatial dimensions.
			Specifying any stride value != 1 is incompatible with specifying
			any `dilation_rate` value != 1.
		padding: one of `"valid"` or `"same"` (case-insensitive).
		data_format: A string,
			one of `channels_last` (default) or `channels_first`.
			The ordering of the dimensions in the inputs.
			`channels_last` corresponds to inputs with shape
			`(batch, spatial_dim1, spatial_dim2, spatial_dim3, channels)`
			while `channels_first` corresponds to inputs with shape
			`(batch, channels, spatial_dim1, spatial_dim2, spatial_dim3)`.
			It defaults to the `image_data_format` value found in your
			Keras config file at `~/.keras/keras.json`.
			If you never set it, then it will be "channels_last".
		dilation_rate: an integer or tuple/list of 3 integers, specifying
			the dilation rate to use for dilated convolution.
			Can be a single integer to specify the same value for
			all spatial dimensions.
			Currently, specifying any `dilation_rate` value != 1 is
			incompatible with specifying any stride value != 1.
		activation: Activation function to use
			(see keras.activations).
			If you don't specify anything, no activation is applied
			(ie. "linear" activation: `a(x) = x`).
		use_bias: Boolean, whether the layer uses a bias vector.
		normalize_weight: Boolean, whether the layer normalizes its quaternion
			weights before convolving the quaternion input.
			The quaternion normalization performed is similar to the one
			for the batchnorm. Each of the quaternion kernels are centred and multiplied by
			the inverse square root of covariance matrix.
			Then, a quaternion multiplication is perfromed as the normalized weights are
			multiplied by the quaternion scaling factor gamma.
		kernel_initializer: Initializer for the quaternion `kernel` weights matrix.
			By default it is 'quaternion'. The 'quaternion_independent' 
			and the usual initializers could also be used.
			(see keras.initializers and init.py).
		bias_initializer: Initializer for the bias vector
			(see keras.initializers).
		kernel_regularizer: Regularizer function applied to
			the `kernel` weights matrix
			(see keras.regularizers).
		bias_regularizer: Regularizer function applied to the bias vector
			(see keras.regularizers).
		activity_regularizer: Regularizer function applied to
			the output of the layer (its "activation").
			(see keras.regularizers).
		kernel_constraint: Constraint function applied to the kernel matrix
			(see keras.constraints).
		bias_constraint: Constraint function applied to the bias vector
			(see keras.constraints).
		spectral_parametrization: Whether or not to use a spectral
			parametrization of the parameters.
	# Input shape
		5D tensor with shape:
		`(samples, channels, conv_dim1, conv_dim2, conv_dim3)` if data_format='channels_first'
		or 5D tensor with shape:
		`(samples, conv_dim1, conv_dim2, conv_dim3, channels)` if data_format='channels_last'.
	# Output shape
		5D tensor with shape:
		`(samples, 2 x filters, new_conv_dim1, new_conv_dim2, new_conv_dim3)` if data_format='channels_first'
		or 5D tensor with shape:
		`(samples, new_conv_dim1, new_conv_dim2, new_conv_dim3, 2 x filters)` if data_format='channels_last'.
		`new_conv_dim1`, `new_conv_dim2` and `new_conv_dim3` values might have changed due to padding.
	"""

	def __init__(self, filters,
				 kernel_size,
				 strides=(1, 1, 1),
				 padding='valid',
				 data_format=None,
				 dilation_rate=(1, 1, 1),
				 activation=None,
				 use_bias=True,
				 kernel_initializer='quaternion',
				 bias_initializer='zeros',
				 kernel_regularizer=None,
				 bias_regularizer=None,
				 activity_regularizer=None,
				 kernel_constraint=None,
				 bias_constraint=None,
				 seed=None,
				 init_criterion='he',
				 spectral_parametrization=False,
				 **kwargs):
		super(QuaternionConv3D, self).__init__(
			rank=3,
			filters=filters,
			kernel_size=kernel_size,
			strides=strides,
			padding=padding,
			data_format=data_format,
			dilation_rate=dilation_rate,
			activation=activation,
			use_bias=use_bias,
			kernel_initializer=kernel_initializer,
			bias_initializer=bias_initializer,
			kernel_regularizer=kernel_regularizer,
			bias_regularizer=bias_regularizer,
			activity_regularizer=activity_regularizer,
			kernel_constraint=kernel_constraint,
			bias_constraint=bias_constraint,
			init_criterion=init_criterion,
			spectral_parametrization=spectral_parametrization,
			**kwargs)

	def get_config(self):
		config = super(QuaternionConv3D, self).get_config()
		config.pop('rank')
		return config

def sanitizedInitGet(init):
	if   init in ["sqrt_init"]:
		return sqrt_init
	elif init in ["complex", "complex_independent",
				  "glorot_complex", "he_complex",
				  "quaternion", "quaternion_independent"]:
		return init
	else:
		return initializers.get(init)
def sanitizedInitSer(init):
	if init in [sqrt_init]:
		return "sqrt_init"
	elif init == "complex" or isinstance(init, ComplexInit):
		return "complex"
	elif init == "complex_independent" or isinstance(init, ComplexIndependentFilters):
		return "complex_independent"
	elif init == "quaternion" or isinstance(init, QuaternionInit):
		return "quaternion"
	elif init == "quaternion_independent" or isinstance(init, QuaternionIndependentFilters):
		return "quaternion_independent"
	else:
		return initializers.serialize(init)


#####################################################################
#					Complex Implementations						#
#####################################################################




class ComplexConv(Layer):
	"""Abstract nD complex convolution layer.
	This layer creates a complex convolution kernel that is convolved
	with the layer input to produce a tensor of outputs.
	If `use_bias` is True, a bias vector is created and added to the outputs.
	Finally, if `activation` is not `None`,
	it is applied to the outputs as well.
	# Arguments
		rank: An integer, the rank of the convolution,
			e.g. "2" for 2D convolution.
		filters: Integer, the dimensionality of the output space, i.e,
			the number of complex feature maps. It is also the effective number
			of feature maps for each of the real and imaginary parts.
			(i.e. the number of complex filters in the convolution)
			The total effective number of filters is 2 x filters.
		kernel_size: An integer or tuple/list of n integers, specifying the
			dimensions of the convolution window.
		strides: An integer or tuple/list of n integers,
			spfying the strides of the convolution.
			Specifying any stride value != 1 is incompatible with specifying
			any `dilation_rate` value != 1.
		padding: One of `"valid"` or `"same"` (case-insensitive).
		data_format: A string,
			one of `channels_last` (default) or `channels_first`.
			The ordering of the dimensions in the inputs.
			`channels_last` corresponds to inputs with shape
			`(batch, ..., channels)` while `channels_first` corresponds to
			inputs with shape `(batch, channels, ...)`.
			It defaults to the `image_data_format` value found in your
			Keras config file at `~/.keras/keras.json`.
			If you never set it, then it will be "channels_last".
		dilation_rate: An integer or tuple/list of n integers, specifying
			the dilation rate to use for dilated convolution.
			Currently, specifying any `dilation_rate` value != 1 is
			incompatible with specifying any `strides` value != 1.
		activation: Activation function to use
			(see keras.activations).
			If you don't specify anything, no activation is applied
			(ie. "linear" activation: `a(x) = x`).
		use_bias: Boolean, whether the layer uses a bias vector.
		normalize_weight: Boolean, whether the layer normalizes its complex
			weights before convolving the complex input.
			The complex normalization performed is similar to the one
			for the batchnorm. Each of the complex kernels are centred and multiplied by
			the inverse square root of covariance matrix.
			Then, a complex multiplication is perfromed as the normalized weights are
			multiplied by the complex scaling factor gamma.
		kernel_initializer: Initializer for the complex `kernel` weights matrix.
			By default it is 'complex'. The 'complex_independent' 
			and the usual initializers could also be used.
			(see keras.initializers and init.py).
		bias_initializer: Initializer for the bias vector
			(see keras.initializers).
		kernel_regularizer: Regularizer function applied to
			the `kernel` weights matrix
			(see keras.regularizers).
		bias_regularizer: Regularizer function applied to the bias vector
			(see keras.regularizers).
		activity_regularizer: Regularizer function applied to
			the output of the layer (its "activation").
			(see keras.regularizers).
		kernel_constraint: Constraint function applied to the kernel matrix
			(see keras.constraints).
		bias_constraint: Constraint function applied to the bias vector
			(see keras.constraints).
		spectral_parametrization: Whether or not to use a spectral
			parametrization of the parameters.
	"""

	def __init__(self, rank,
				 filters,
				 kernel_size,
				 strides=1,
				 padding='valid',
				 data_format=None,
				 dilation_rate=1,
				 activation=None,
				 use_bias=True,
				 normalize_weight=False,
				 kernel_initializer='complex',
				 bias_initializer='zeros',
				 gamma_diag_initializer=sqrt_init,
				 gamma_off_initializer='zeros',
				 kernel_regularizer=None,
				 bias_regularizer=None,
				 gamma_diag_regularizer=None,
				 gamma_off_regularizer=None,
				 activity_regularizer=None,
				 kernel_constraint=None,
				 bias_constraint=None,
				 gamma_diag_constraint=None,
				 gamma_off_constraint=None,
				 init_criterion='he',
				 seed=None,
				 spectral_parametrization=False,
				 epsilon=1e-7,
				 **kwargs):
		super(ComplexConv, self).__init__(**kwargs)
		self.rank = rank
		self.filters = filters
		self.kernel_size = conv_utils.normalize_tuple(kernel_size, rank, 'kernel_size')
		self.strides = conv_utils.normalize_tuple(strides, rank, 'strides')
		self.padding = conv_utils.normalize_padding(padding)
		self.data_format = 'channels_last' if rank == 1 else conv_utils.normalize_data_format(data_format)
		self.dilation_rate = conv_utils.normalize_tuple(dilation_rate, rank, 'dilation_rate')
		self.activation = activations.get(activation)
		self.use_bias = use_bias
		self.normalize_weight = normalize_weight
		self.init_criterion = init_criterion
		self.spectral_parametrization = spectral_parametrization
		self.epsilon = epsilon
		self.kernel_initializer = sanitizedInitGet(kernel_initializer)
		self.bias_initializer = sanitizedInitGet(bias_initializer)
		self.gamma_diag_initializer = sanitizedInitGet(gamma_diag_initializer)
		self.gamma_off_initializer = sanitizedInitGet(gamma_off_initializer)
		self.kernel_regularizer = regularizers.get(kernel_regularizer)
		self.bias_regularizer = regularizers.get(bias_regularizer)
		self.gamma_diag_regularizer = regularizers.get(gamma_diag_regularizer)
		self.gamma_off_regularizer = regularizers.get(gamma_off_regularizer)
		self.activity_regularizer = regularizers.get(activity_regularizer)
		self.kernel_constraint = constraints.get(kernel_constraint)
		self.bias_constraint = constraints.get(bias_constraint)
		self.gamma_diag_constraint = constraints.get(gamma_diag_constraint)
		self.gamma_off_constraint = constraints.get(gamma_off_constraint)
		if seed is None:
			self.seed = np.random.randint(1, 10e6)
		else:
			self.seed = seed
		self.input_spec = InputSpec(ndim=self.rank + 2)

	def build(self, input_shape):

		if self.data_format == 'channels_first':
			channel_axis = 1
		else:
			channel_axis = -1
		if input_shape[channel_axis] is None:
			raise ValueError('The channel dimension of the inputs '
							 'should be defined. Found `None`.')
		input_dim = input_shape[channel_axis] // 2
		self.kernel_shape = self.kernel_size + (input_dim , self.filters)
		# The kernel shape here is a complex kernel shape:
		#   nb of complex feature maps = input_dim;
		#   nb of output complex feature maps = self.filters;
		#   imaginary kernel size = real kernel size 
		#						 = self.kernel_size 
		#						 = complex kernel size
		if self.kernel_initializer in {'complex', 'complex_independent'}:
			kls = {'complex':			 ComplexInit,
				   'complex_independent': ComplexIndependentFilters}[self.kernel_initializer]
			kern_init = kls(
				kernel_size=self.kernel_size,
				input_dim=input_dim,
				weight_dim=self.rank,
				nb_filters=self.filters,
				criterion=self.init_criterion
			)
		else:
			kern_init = self.kernel_initializer
		
		self.kernel = self.add_weight(
			self.kernel_shape,
			initializer=kern_init,
			name='kernel',
			regularizer=self.kernel_regularizer,
			constraint=self.kernel_constraint
		)

		if self.normalize_weight:
			gamma_shape = (input_dim * self.filters,)
			self.gamma_rr = self.add_weight(
				shape=gamma_shape,
				name='gamma_rr',
				initializer=self.gamma_diag_initializer,
				regularizer=self.gamma_diag_regularizer,
				constraint=self.gamma_diag_constraint
			)
			self.gamma_ii = self.add_weight(
				shape=gamma_shape,
				name='gamma_ii',
				initializer=self.gamma_diag_initializer,
				regularizer=self.gamma_diag_regularizer,
				constraint=self.gamma_diag_constraint
			)
			self.gamma_ri = self.add_weight(
				shape=gamma_shape,
				name='gamma_ri',
				initializer=self.gamma_off_initializer,
				regularizer=self.gamma_off_regularizer,
				constraint=self.gamma_off_constraint
			)
		else:
			self.gamma_rr = None
			self.gamma_ii = None
			self.gamma_ri = None

		if self.use_bias:
			bias_shape = (2 * self.filters,)
			self.bias = self.add_weight(
				bias_shape,
				initializer=self.bias_initializer,
				name='bias',
				regularizer=self.bias_regularizer,
				constraint=self.bias_constraint
			)

		else:
			self.bias = None

		# Set input spec.
		self.input_spec = InputSpec(ndim=self.rank + 2,
									axes={channel_axis: input_dim * 2})
		self.built = True

	def call(self, inputs):
		channel_axis = 1 if self.data_format == 'channels_first' else -1
		input_dim	= K.shape(inputs)[channel_axis] // 2
		if self.rank == 1:
			f_real   = self.kernel[:, :, :self.filters]
			f_imag   = self.kernel[:, :, self.filters:]
		elif self.rank == 2:
			f_real   = self.kernel[:, :, :, :self.filters]
			f_imag   = self.kernel[:, :, :, self.filters:]
		elif self.rank == 3:
			f_real   = self.kernel[:, :, :, :, :self.filters]
			f_imag   = self.kernel[:, :, :, :, self.filters:]

		convArgs = {"strides":	   self.strides[0]	   if self.rank == 1 else self.strides,
					"padding":	   self.padding,
					"data_format":   self.data_format,
					"dilation_rate": self.dilation_rate[0] if self.rank == 1 else self.dilation_rate}
		convFunc = {1: K.conv1d,
					2: K.conv2d,
					3: K.conv3d}[self.rank]

		# processing if the weights are assumed to be represented in the spectral domain

		if self.spectral_parametrization:
			if   self.rank == 1:
				f_real = K.permute_dimensions(f_real, (2,1,0))
				f_imag = K.permute_dimensions(f_imag, (2,1,0))
				f	  = K.concatenate([f_real, f_imag], axis=0)
				fshape = K.shape(f)
				f	  = K.reshape(f, (fshape[0] * fshape[1], fshape[2]))
				f	  = ifft(f)
				f	  = K.reshape(f, fshape)
				f_real = f[:fshape[0]//2]
				f_imag = f[fshape[0]//2:]
				f_real = K.permute_dimensions(f_real, (2,1,0))
				f_imag = K.permute_dimensions(f_imag, (2,1,0))
			elif self.rank == 2:
				f_real = K.permute_dimensions(f_real, (3,2,0,1))
				f_imag = K.permute_dimensions(f_imag, (3,2,0,1))
				f	  = K.concatenate([f_real, f_imag], axis=0)
				fshape = K.shape(f)
				f	  = K.reshape(f, (fshape[0] * fshape[1], fshape[2], fshape[3]))
				f	  = ifft2(f)
				f	  = K.reshape(f, fshape)
				f_real = f[:fshape[0]//2]
				f_imag = f[fshape[0]//2:]
				f_real = K.permute_dimensions(f_real, (2,3,1,0))
				f_imag = K.permute_dimensions(f_imag, (2,3,1,0))

		# In case of weight normalization, real and imaginary weights are normalized

		if self.normalize_weight:
			ker_shape = self.kernel_shape
			nb_kernels = ker_shape[-2] * ker_shape[-1]
			kernel_shape_4_norm = (np.prod(self.kernel_size), nb_kernels)
			reshaped_f_real = K.reshape(f_real, kernel_shape_4_norm)
			reshaped_f_imag = K.reshape(f_imag, kernel_shape_4_norm)
			reduction_axes = list(range(2))
			del reduction_axes[-1]
			mu_real = K.mean(reshaped_f_real, axis=reduction_axes)
			mu_imag = K.mean(reshaped_f_imag, axis=reduction_axes)

			broadcast_mu_shape = [1] * 2
			broadcast_mu_shape[-1] = nb_kernels
			broadcast_mu_real = K.reshape(mu_real, broadcast_mu_shape)
			broadcast_mu_imag = K.reshape(mu_imag, broadcast_mu_shape)
			reshaped_f_real_centred = reshaped_f_real - broadcast_mu_real
			reshaped_f_imag_centred = reshaped_f_imag - broadcast_mu_imag
			Vrr = K.mean(reshaped_f_real_centred ** 2, axis=reduction_axes) + self.epsilon
			Vii = K.mean(reshaped_f_imag_centred ** 2, axis=reduction_axes) + self.epsilon
			Vri = K.mean(reshaped_f_real_centred * reshaped_f_imag_centred,
						 axis=reduction_axes) + self.epsilon
			
			normalized_weight = complex_normalization(
				K.concatenate([reshaped_f_real, reshaped_f_imag], axis=-1),
				Vrr, Vii, Vri,
				beta = None,
				gamma_rr = self.gamma_rr,
				gamma_ri = self.gamma_ri,
				gamma_ii = self.gamma_ii,
				scale=True,
				center=False,
				axis=-1
			)

			normalized_real = normalized_weight[:, :nb_kernels]
			normalized_imag = normalized_weight[:, nb_kernels:]
			f_real = K.reshape(normalized_real, self.kernel_shape)
			f_imag = K.reshape(normalized_imag, self.kernel_shape)

		# Performing complex convolution

		f_real._keras_shape = self.kernel_shape
		f_imag._keras_shape = self.kernel_shape

		cat_kernels_4_real = K.concatenate([f_real, -f_imag], axis=-2)
		cat_kernels_4_imag = K.concatenate([f_imag,  f_real], axis=-2)
		cat_kernels_4_complex = K.concatenate([cat_kernels_4_real, cat_kernels_4_imag], axis=-1)
		cat_kernels_4_complex._keras_shape = self.kernel_size + (2 * input_dim, 2 * self.filters)

		output = convFunc(inputs, cat_kernels_4_complex, **convArgs)

		if self.use_bias:
			output = K.bias_add(
				output,
				self.bias,
				data_format=self.data_format
			)

		if self.activation is not None:
			output = self.activation(output)

		return output

	def compute_output_shape(self, input_shape):
		if self.data_format == 'channels_last':
			space = input_shape[1:-1]
			new_space = []
			for i in range(len(space)):
				new_dim = conv_utils.conv_output_length(
					space[i],
					self.kernel_size[i],
					padding=self.padding,
					stride=self.strides[i],
					dilation=self.dilation_rate[i]
				)
				new_space.append(new_dim)
			return (input_shape[0],) + tuple(new_space) + (2 * self.filters,)
		if self.data_format == 'channels_first':
			space = input_shape[2:]
			new_space = []
			for i in range(len(space)):
				new_dim = conv_utils.conv_output_length(
					space[i],
					self.kernel_size[i],
					padding=self.padding,
					stride=self.strides[i],
					dilation=self.dilation_rate[i])
				new_space.append(new_dim)
			return (input_shape[0],) + (2 * self.filters,) + tuple(new_space)

	def get_config(self):
		config = {
			'rank': self.rank,
			'filters': self.filters,
			'kernel_size': self.kernel_size,
			'strides': self.strides,
			'padding': self.padding,
			'data_format': self.data_format,
			'dilation_rate': self.dilation_rate,
			'activation': activations.serialize(self.activation),
			'use_bias': self.use_bias,
			'normalize_weight': self.normalize_weight,
			'kernel_initializer': sanitizedInitSer(self.kernel_initializer),
			'bias_initializer': sanitizedInitSer(self.bias_initializer),
			'gamma_diag_initializer': sanitizedInitSer(self.gamma_diag_initializer),
			'gamma_off_initializer': sanitizedInitSer(self.gamma_off_initializer),
			'kernel_regularizer': regularizers.serialize(self.kernel_regularizer),
			'bias_regularizer': regularizers.serialize(self.bias_regularizer),
			'gamma_diag_regularizer': regularizers.serialize(self.gamma_diag_regularizer),
			'gamma_off_regularizer': regularizers.serialize(self.gamma_off_regularizer),
			'activity_regularizer': regularizers.serialize(self.activity_regularizer),
			'kernel_constraint': constraints.serialize(self.kernel_constraint),
			'bias_constraint': constraints.serialize(self.bias_constraint),
			'gamma_diag_constraint': constraints.serialize(self.gamma_diag_constraint),
			'gamma_off_constraint': constraints.serialize(self.gamma_off_constraint),
			'init_criterion': self.init_criterion,
			'spectral_parametrization': self.spectral_parametrization,
		}
		base_config = super(ComplexConv, self).get_config()
		return dict(list(base_config.items()) + list(config.items()))


class ComplexConv1D(ComplexConv):
	"""1D complex convolution layer.
	This layer creates a complex convolution kernel that is convolved
	with a complex input layer over a single complex spatial (or temporal) dimension
	to produce a complex output tensor.
	If `use_bias` is True, a bias vector is created and added to the complex output.
	Finally, if `activation` is not `None`,
	it is applied each of the real and imaginary parts of the output.
	When using this layer as the first layer in a model,
	provide an `input_shape` argument
	(tuple of integers or `None`, e.g.
	`(10, 128)` for sequences of 10 vectors of 128-dimensional vectors,
	or `(None, 128)` for variable-length sequences of 128-dimensional vectors.
	# Arguments
		filters: Integer, the dimensionality of the output space, i.e,
			the number of complex feature maps. It is also the effective number
			of feature maps for each of the real and imaginary parts.
			(i.e. the number of complex filters in the convolution)
			The total effective number of filters is 2 x filters.
		kernel_size: An integer or tuple/list of n integers, specifying the
			dimensions of the convolution window.
		strides: An integer or tuple/list of a single integer,
			specifying the stride length of the convolution.
			Specifying any stride value != 1 is incompatible with specifying
			any `dilation_rate` value != 1.
		padding: One of `"valid"`, `"causal"` or `"same"` (case-insensitive).
			`"causal"` results in causal (dilated) convolutions, e.g. output[t]
			does not depend on input[t+1:]. Useful when modeling temporal data
			where the model should not violate the temporal order.
			See [WaveNet: A Generative Model for Raw Audio, section 2.1](https://arxiv.org/abs/1609.03499).
		dilation_rate: an integer or tuple/list of a single integer, specifying
			the dilation rate to use for dilated convolution.
			Currently, specifying any `dilation_rate` value != 1 is
			incompatible with specifying any `strides` value != 1.
		activation: Activation function to use
			(see keras.activations).
			If you don't specify anything, no activation is applied
			(ie. "linear" activation: `a(x) = x`).
		use_bias: Boolean, whether the layer uses a bias vector.
		normalize_weight: Boolean, whether the layer normalizes its complex
			weights before convolving the complex input.
			The complex normalization performed is similar to the one
			for the batchnorm. Each of the complex kernels are centred and multiplied by
			the inverse square root of covariance matrix.
			Then, a complex multiplication is perfromed as the normalized weights are
			multiplied by the complex scaling factor gamma.
		kernel_initializer: Initializer for the complex `kernel` weights matrix.
			By default it is 'complex'. The 'complex_independent' 
			and the usual initializers could also be used.
			(see keras.initializers and init.py).
		bias_initializer: Initializer for the bias vector
			(see keras.initializers).
		kernel_regularizer: Regularizer function applied to
			the `kernel` weights matrix
			(see keras.regularizers).
		bias_regularizer: Regularizer function applied to the bias vector
			(see keras.regularizers).
		activity_regularizer: Regularizer function applied to
			the output of the layer (its "activation").
			(see keras.regularizers).
		kernel_constraint: Constraint function applied to the kernel matrix
			(see keras.constraints).
		bias_constraint: Constraint function applied to the bias vector
			(see keras.constraints).
		spectral_parametrization: Whether or not to use a spectral
			parametrization of the parameters.
	# Input shape
		3D tensor with shape: `(batch_size, steps, input_dim)`
	# Output shape
		3D tensor with shape: `(batch_size, new_steps, 2 x filters)`
		`steps` value might have changed due to padding or strides.
	"""

	def __init__(self, filters,
				 kernel_size,
				 strides=1,
				 padding='valid',
				 dilation_rate=1,
				 activation=None,
				 use_bias=True,
				 kernel_initializer='complex',
				 bias_initializer='zeros',
				 kernel_regularizer=None,
				 bias_regularizer=None,
				 activity_regularizer=None,
				 kernel_constraint=None,
				 bias_constraint=None,
				 seed=None,
				 init_criterion='he',
				 spectral_parametrization=False,
				 **kwargs):
		super(ComplexConv1D, self).__init__(
			rank=1,
			filters=filters,
			kernel_size=kernel_size,
			strides=strides,
			padding=padding,
			data_format='channels_last',
			dilation_rate=dilation_rate,
			activation=activation,
			use_bias=use_bias,
			kernel_initializer=kernel_initializer,
			bias_initializer=bias_initializer,
			kernel_regularizer=kernel_regularizer,
			bias_regularizer=bias_regularizer,
			activity_regularizer=activity_regularizer,
			kernel_constraint=kernel_constraint,
			bias_constraint=bias_constraint,
			init_criterion=init_criterion,
			spectral_parametrization=spectral_parametrization,
			**kwargs)

	def get_config(self):
		config = super(ComplexConv1D, self).get_config()
		config.pop('rank')
		config.pop('data_format')
		return config


class ComplexConv2D(ComplexConv):
	"""2D Complex convolution layer (e.g. spatial convolution over images).
	This layer creates a complex convolution kernel that is convolved
	with a complex input layer to produce a complex output tensor. If `use_bias` 
	is True, a complex bias vector is created and added to the outputs.
	Finally, if `activation` is not `None`, it is applied to both the
	real and imaginary parts of the output.
	When using this layer as the first layer in a model,
	provide the keyword argument `input_shape`
	(tuple of integers, does not include the sample axis),
	e.g. `input_shape=(128, 128, 3)` for 128x128 RGB pictures
	in `data_format="channels_last"`.
	# Arguments
		filters: Integer, the dimensionality of the complex output space
			(i.e, the number complex feature maps in the convolution).
			The total effective number of filters or feature maps is 2 x filters.
		kernel_size: An integer or tuple/list of 2 integers, specifying the
			width and height of the 2D convolution window.
			Can be a single integer to specify the same value for
			all spatial dimensions.
		strides: An integer or tuple/list of 2 integers,
			specifying the strides of the convolution along the width and height.
			Can be a single integer to specify the same value for
			all spatial dimensions.
			Specifying any stride value != 1 is incompatible with specifying
			any `dilation_rate` value != 1.
		padding: one of `"valid"` or `"same"` (case-insensitive).
		data_format: A string,
			one of `channels_last` (default) or `channels_first`.
			The ordering of the dimensions in the inputs.
			`channels_last` corresponds to inputs with shape
			`(batch, height, width, channels)` while `channels_first`
			corresponds to inputs with shape
			`(batch, channels, height, width)`.
			It defaults to the `image_data_format` value found in your
			Keras config file at `~/.keras/keras.json`.
			If you never set it, then it will be "channels_last".
		dilation_rate: an integer or tuple/list of 2 integers, specifying
			the dilation rate to use for dilated convolution.
			Can be a single integer to specify the same value for
			all spatial dimensions.
			Currently, specifying any `dilation_rate` value != 1 is
			incompatible with specifying any stride value != 1.
		activation: Activation function to use
			(see keras.activations).
			If you don't specify anything, no activation is applied
			(ie. "linear" activation: `a(x) = x`).
		use_bias: Boolean, whether the layer uses a bias vector.
		normalize_weight: Boolean, whether the layer normalizes its complex
			weights before convolving the complex input.
			The complex normalization performed is similar to the one
			for the batchnorm. Each of the complex kernels are centred and multiplied by
			the inverse square root of covariance matrix.
			Then, a complex multiplication is perfromed as the normalized weights are
			multiplied by the complex scaling factor gamma.
		kernel_initializer: Initializer for the complex `kernel` weights matrix.
			By default it is 'complex'. The 'complex_independent' 
			and the usual initializers could also be used.
			(see keras.initializers and init.py).
		bias_initializer: Initializer for the bias vector
			(see keras.initializers).
		kernel_regularizer: Regularizer function applied to
			the `kernel` weights matrix
			(see keras.regularizers).
		bias_regularizer: Regularizer function applied to the bias vector
			(see keras.regularizers).
		activity_regularizer: Regularizer function applied to
			the output of the layer (its "activation").
			(see keras.regularizers).
		kernel_constraint: Constraint function applied to the kernel matrix
			(see keras.constraints).
		bias_constraint: Constraint function applied to the bias vector
			(see keras.constraints).
		spectral_parametrization: Whether or not to use a spectral
			parametrization of the parameters.
	# Input shape
		4D tensor with shape:
		`(samples, channels, rows, cols)` if data_format='channels_first'
		or 4D tensor with shape:
		`(samples, rows, cols, channels)` if data_format='channels_last'.
	# Output shape
		4D tensor with shape:
		`(samples, 2 x filters, new_rows, new_cols)` if data_format='channels_first'
		or 4D tensor with shape:
		`(samples, new_rows, new_cols, 2 x filters)` if data_format='channels_last'.
		`rows` and `cols` values might have changed due to padding.
	"""

	def __init__(self, filters,
				 kernel_size,
				 strides=(1, 1),
				 padding='valid',
				 data_format=None,
				 dilation_rate=(1, 1),
				 activation=None,
				 use_bias=True,
				 kernel_initializer='complex',
				 bias_initializer='zeros',
				 kernel_regularizer=None,
				 bias_regularizer=None,
				 activity_regularizer=None,
				 kernel_constraint=None,
				 bias_constraint=None,
				 seed=None,
				 init_criterion='he',
				 spectral_parametrization=False,
				 **kwargs):
		super(ComplexConv2D, self).__init__(
			rank=2,
			filters=filters,
			kernel_size=kernel_size,
			strides=strides,
			padding=padding,
			data_format=data_format,
			dilation_rate=dilation_rate,
			activation=activation,
			use_bias=use_bias,
			kernel_initializer=kernel_initializer,
			bias_initializer=bias_initializer,
			kernel_regularizer=kernel_regularizer,
			bias_regularizer=bias_regularizer,
			activity_regularizer=activity_regularizer,
			kernel_constraint=kernel_constraint,
			bias_constraint=bias_constraint,
			init_criterion=init_criterion,
			spectral_parametrization=spectral_parametrization,
			**kwargs)

	def get_config(self):
		config = super(ComplexConv2D, self).get_config()
		config.pop('rank')
		return config


class ComplexConv3D(ComplexConv):
	"""3D convolution layer (e.g. spatial convolution over volumes).
	This layer creates a complex convolution kernel that is convolved
	with a complex layer input to produce a complex output tensor.
	If `use_bias` is True,
	a complex bias vector is created and added to the outputs. Finally, if
	`activation` is not `None`, it is applied to each of the real and imaginary
	parts of the output.
	When using this layer as the first layer in a model,
	provide the keyword argument `input_shape`
	(tuple of integers, does not include the sample axis),
	e.g. `input_shape=(2, 128, 128, 128, 3)` for 128x128x128 volumes
	with 3 channels,
	in `data_format="channels_last"`.
	# Arguments
		filters: Integer, the dimensionality of the complex output space
			(i.e, the number complex feature maps in the convolution).
			The total effective number of filters or feature maps is 2 x filters.
		kernel_size: An integer or tuple/list of 3 integers, specifying the
			width and height of the 3D convolution window.
			Can be a single integer to specify the same value for
			all spatial dimensions.
		strides: An integer or tuple/list of 3 integers,
			specifying the strides of the convolution along each spatial dimension.
			Can be a single integer to specify the same value for
			all spatial dimensions.
			Specifying any stride value != 1 is incompatible with specifying
			any `dilation_rate` value != 1.
		padding: one of `"valid"` or `"same"` (case-insensitive).
		data_format: A string,
			one of `channels_last` (default) or `channels_first`.
			The ordering of the dimensions in the inputs.
			`channels_last` corresponds to inputs with shape
			`(batch, spatial_dim1, spatial_dim2, spatial_dim3, channels)`
			while `channels_first` corresponds to inputs with shape
			`(batch, channels, spatial_dim1, spatial_dim2, spatial_dim3)`.
			It defaults to the `image_data_format` value found in your
			Keras config file at `~/.keras/keras.json`.
			If you never set it, then it will be "channels_last".
		dilation_rate: an integer or tuple/list of 3 integers, specifying
			the dilation rate to use for dilated convolution.
			Can be a single integer to specify the same value for
			all spatial dimensions.
			Currently, specifying any `dilation_rate` value != 1 is
			incompatible with specifying any stride value != 1.
		activation: Activation function to use
			(see keras.activations).
			If you don't specify anything, no activation is applied
			(ie. "linear" activation: `a(x) = x`).
		use_bias: Boolean, whether the layer uses a bias vector.
		normalize_weight: Boolean, whether the layer normalizes its complex
			weights before convolving the complex input.
			The complex normalization performed is similar to the one
			for the batchnorm. Each of the complex kernels are centred and multiplied by
			the inverse square root of covariance matrix.
			Then, a complex multiplication is perfromed as the normalized weights are
			multiplied by the complex scaling factor gamma.
		kernel_initializer: Initializer for the complex `kernel` weights matrix.
			By default it is 'complex'. The 'complex_independent' 
			and the usual initializers could also be used.
			(see keras.initializers and init.py).
		bias_initializer: Initializer for the bias vector
			(see keras.initializers).
		kernel_regularizer: Regularizer function applied to
			the `kernel` weights matrix
			(see keras.regularizers).
		bias_regularizer: Regularizer function applied to the bias vector
			(see keras.regularizers).
		activity_regularizer: Regularizer function applied to
			the output of the layer (its "activation").
			(see keras.regularizers).
		kernel_constraint: Constraint function applied to the kernel matrix
			(see keras.constraints).
		bias_constraint: Constraint function applied to the bias vector
			(see keras.constraints).
		spectral_parametrization: Whether or not to use a spectral
			parametrization of the parameters.
	# Input shape
		5D tensor with shape:
		`(samples, channels, conv_dim1, conv_dim2, conv_dim3)` if data_format='channels_first'
		or 5D tensor with shape:
		`(samples, conv_dim1, conv_dim2, conv_dim3, channels)` if data_format='channels_last'.
	# Output shape
		5D tensor with shape:
		`(samples, 2 x filters, new_conv_dim1, new_conv_dim2, new_conv_dim3)` if data_format='channels_first'
		or 5D tensor with shape:
		`(samples, new_conv_dim1, new_conv_dim2, new_conv_dim3, 2 x filters)` if data_format='channels_last'.
		`new_conv_dim1`, `new_conv_dim2` and `new_conv_dim3` values might have changed due to padding.
	"""

	def __init__(self, filters,
				 kernel_size,
				 strides=(1, 1, 1),
				 padding='valid',
				 data_format=None,
				 dilation_rate=(1, 1, 1),
				 activation=None,
				 use_bias=True,
				 kernel_initializer='complex',
				 bias_initializer='zeros',
				 kernel_regularizer=None,
				 bias_regularizer=None,
				 activity_regularizer=None,
				 kernel_constraint=None,
				 bias_constraint=None,
				 seed=None,
				 init_criterion='he',
				 spectral_parametrization=False,
				 **kwargs):
		super(ComplexConv3D, self).__init__(
			rank=3,
			filters=filters,
			kernel_size=kernel_size,
			strides=strides,
			padding=padding,
			data_format=data_format,
			dilation_rate=dilation_rate,
			activation=activation,
			use_bias=use_bias,
			kernel_initializer=kernel_initializer,
			bias_initializer=bias_initializer,
			kernel_regularizer=kernel_regularizer,
			bias_regularizer=bias_regularizer,
			activity_regularizer=activity_regularizer,
			kernel_constraint=kernel_constraint,
			bias_constraint=bias_constraint,
			init_criterion=init_criterion,
			spectral_parametrization=spectral_parametrization,
			**kwargs)

	def get_config(self):
		config = super(ComplexConv3D, self).get_config()
		config.pop('rank')
		return config


class WeightNorm_Conv(_Conv):
	# Real-valued Convolutional Layer that normalizes its weights
	# before convolving the input.
	# The weight Normalization performed the one
	# described in the following paper:
	# Weight Normalization: A Simple Reparameterization to Accelerate Training of Deep Neural Networks
	# (see https://arxiv.org/abs/1602.07868)

	def __init__(self,
				 gamma_initializer='ones',
				 gamma_regularizer=None,
				 gamma_constraint=None,
				 epsilon=1e-07,
				 **kwargs):
		super(WeightNorm_Conv, self).__init__(**kwargs)
		if self.rank == 1:
			self.data_format = 'channels_last'
		self.gamma_initializer = sanitizedInitGet(gamma_initializer)
		self.gamma_regularizer = regularizers.get(gamma_regularizer)
		self.gamma_constraint = constraints.get(gamma_constraint)
		self.epsilon = epsilon

	def build(self, input_shape):
		super(WeightNorm_Conv, self).build(input_shape)
		if self.data_format == 'channels_first':
			channel_axis = 1
		else:
			channel_axis = -1
		if input_shape[channel_axis] is None:
			raise ValueError('The channel dimension of the inputs '
							 'should be defined. Found `None`.')
		input_dim = input_shape[channel_axis]
		gamma_shape = (input_dim * self.filters,)
		self.gamma = self.add_weight(
			shape=gamma_shape,
			name='gamma',
			initializer=self.gamma_initializer,
			regularizer=self.gamma_regularizer,
			constraint=self.gamma_constraint
		)

	def call(self, inputs):
		input_shape = K.shape(inputs)
		if self.data_format == 'channels_first':
			channel_axis = 1
		else:
			channel_axis = -1
		if input_shape[channel_axis] is None:
			raise ValueError('The channel dimension of the inputs '
							 'should be defined. Found `None`.')
		input_dim = input_shape[channel_axis]
		ker_shape = self.kernel_size + (input_dim, self.filters)
		nb_kernels = ker_shape[-2] * ker_shape[-1]
		kernel_shape_4_norm = (np.prod(self.kernel_size), nb_kernels)
		reshaped_kernel = K.reshape(self.kernel, kernel_shape_4_norm)
		normalized_weight = K.l2_normalize(reshaped_kernel, axis=0, epsilon=self.epsilon)
		normalized_weight = K.reshape(self.gamma, (1, ker_shape[-2] * ker_shape[-1])) * normalized_weight
		shaped_kernel = K.reshape(normalized_weight, ker_shape)
		shaped_kernel._keras_shape = ker_shape
		
		convArgs = {"strides":	   self.strides[0]	   if self.rank == 1 else self.strides,
					"padding":	   self.padding,
					"data_format":   self.data_format,
					"dilation_rate": self.dilation_rate[0] if self.rank == 1 else self.dilation_rate}
		convFunc = {1: K.conv1d,
					2: K.conv2d,
					3: K.conv3d}[self.rank]
		output = convFunc(inputs, shaped_kernel, **convArgs)

		if self.use_bias:
			output = K.bias_add(
				output,
				self.bias,
				data_format=self.data_format
			)

		if self.activation is not None:
			output = self.activation(output)

		return output

	def get_config(self):
		config = {
			'gamma_initializer': sanitizedInitSer(self.gamma_initializer),
			'gamma_regularizer': regularizers.serialize(self.gamma_regularizer),
			'gamma_constraint': constraints.serialize(self.gamma_constraint),
			'epsilon': self.epsilon
		}
		base_config = super(WeightNorm_Conv, self).get_config()
		return dict(list(base_config.items()) + list(config.items()))



# Aliases
QuaternionConvolution1D = QuaternionConv1D
QuaternionConvolution2D = QuaternionConv2D
QuaternionConvolution3D = QuaternionConv3D

ComplexConvolution1D = ComplexConv1D
ComplexConvolution2D = ComplexConv2D
ComplexConvolution3D = ComplexConv3D