keras-examples
keras-examples copied to clipboard
How you are performing finetuning in without load_weights in 17flowers
In finetuning.py of 17Flowers how you are performing fine tuning without loading a pretrained weights?
As I can see you commented out the following line (Line no. 51):
# top_model.load_weights(os.path.join(result_dir, 'bottleneck_fc_model.h5'))
Whereas in finetuning.py of dogs_vs_cats you are executing that line. Is it possible to fine tune without loading a pretrained model?