Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is h5 model in Keras? [closed]

I came across an h5 model in Keras for image recognition. But I am not sure what does the file extension refers to.

Can anyone explain it to me?

like image 310
Divya Avatar asked Jan 18 '18 11:01

Divya


1 Answers

You mean a HDF5/H5 file, which is a file format to store structured data, its not a model by itself. Keras saves models in this format as it can easily store the weights and model configuration in a single file.

like image 141
Dr. Snoopy Avatar answered Oct 18 '22 18:10

Dr. Snoopy