model architecture

If training is failing to start, and you are not receiving an error message telling you what to do, tell us about it here


Forum rules

Read the FAQs and search the forum before posting a new topic.

This forum is for reporting errors with the Training process. If you want to get tips, or better understand the Training process, then you should look in the Training Discussion forum.

Please mark any answers that fixed your problems so others can find the solutions.

Locked
User avatar
damingxing
Posts: 23
Joined: Mon Jun 13, 2022 8:55 pm
Has thanked: 6 times

model architecture

Post 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!

User avatar
torzdf
Posts: 2649
Joined: Fri Jul 12, 2019 12:53 am
Answers: 159
Has thanked: 128 times
Been thanked: 623 times

Re: model architecture

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

My word is final

Locked