image-segmentation-keras
                                
                                 image-segmentation-keras copied to clipboard
                                
                                    image-segmentation-keras copied to clipboard
                            
                            
                            
                        no meta file generated after the training
There are no meta file generated. These are the files generated after 2 epochs. Can someone please help.
vgg_unet_1.00001.index
vgg_unet_1.00001.data-00000-of-00001
vgg_unet_1.00002.index
vgg_unet_1.00002.data-00000-of-00001
Did you find a solution?
In my case, there is only checkpoint  _config.json
and checkpoint contains
model_checkpoint_path: ".00001"
all_model_checkpoint_paths: ".00001"
I am using model.save or model.save_weights. So I am no more working with the checkpoint files. However it would be good to know about this.
Yes, I too then changed the code to save an '.h5' file, and now my model gets saved. (refered this) In your case, I atleast see index and data files (assuming you made no changed in the cloned repo). However, the code doesn't generate even these in my case.
Thanks for your inputs.