Page 1 of 1

model architecture

Posted: Fri Jul 29, 2022 4:51 pm
by damingxing

Can we reload the model in a jupyter notebook and print its summary? I have tried tensorflow and keras's usual load model methods and they did not work. Any insights?

And isn't the .h5 file the model file?

Thanks!


Re: model architecture

Posted: Sat Jul 30, 2022 4:36 pm
by torzdf

Not directly. If you select the "summary" option, it will output the summary of the configured settings, not the stored model (which can be different).

You can get the summary output though by enabling "verbose" log level and not selecting "summary". This will start training your model, but will output a summary first.