hyperas icon indicating copy to clipboard operation
hyperas copied to clipboard

Using a compiled network in another file raises error

Open ljakupi opened this issue 6 years ago • 0 comments

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).

ljakupi avatar May 20 '19 11:05 ljakupi