The addition here is where I add the ComplexDense() and define it as 'dense'.
The following error error is printed:
.. building model
.. complex network
.. using deep convnet
start model
input shape is ( 4096 , 2 )
Traceback (most recent call last):
File "scripts/train.py", line 147, in <module>
main(**parser.parse_args().__dict__)
File "scripts/train.py", line 105, in main
model = get_model(model, dataset.feature_dim)
File "scripts/train.py", line 80, in get_model
channels=feature_dim[1])
File "/home/my_name/Dvlp/py2venvs/test_env/local/lib/python2.7/site-packages/musicnet/models/complex/__init__.py", line 107, in get_deep_convnet
predictions = GetReal(predictions)
TypeError: __init__() takes exactly 1 argument (2 given)
I am trying to add a complex dense layer to the deep network
The addition here is where I add the ComplexDense() and define it as 'dense'. The following error error is printed: