hyperas
hyperas copied to clipboard
Using a compiled network in another file raises error
Is it possible to use a created and compiled network in another file within create_model() method?
Doing this gives me the error below:
Traceback (most recent call last): .. in <module> trials=Trials() .... IndexError: list index out of range
If I create the network inside create_model(), it works fine, but it does not work if I import a compiled network from another file, e.g.: model = FCNetwork.build() (build() creates and returns a compiled fully connected network from another file).