pierluigiferrari / ssd_keras

A Keras port of Single Shot MultiBox Detector
Apache License 2.0
1.86k stars 934 forks source link

Error while loading model #367

Open cktboy opened 3 years ago

cktboy commented 3 years ago

model downloaded from provided link for model VGG_VOC0712_SSD_300x300_iter_120000.h5'

tried with other model links, but getting same error

code:

model = load_model(model_path, custom_objects={'AnchorBoxes': AnchorBoxes, 'L2Normalization': L2Normalization, 'DecodeDetections': DecodeDetections, 'compute_loss': ssd_loss.compute_loss})

Error:

~\AppData\Roaming\Python\Python36\site-packages\tensorflow\python\keras\saving\hdf5_format.py in load_model_from_hdf5(filepath, custom_objects, compile) 173 model_config = f.attrs.get('model_config') 174 if model_config is None: --> 175 raise ValueError('No model found in config file.') 176 model_config = json.loads(model_config.decode('utf-8')) 177 model = model_config_lib.model_from_config(model_config,

ValueError: No model found in config file.

stale[bot] commented 3 years ago

This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.