I am training a cnn usingmodel.fit() and saving it using model.save("tflearn.model")
However, this creates 4 files:
1) tflearn.model.data-00000-of-00001
2) tflearn.model.meta
3) tflearn.model.index
4) checkpoint
While loading the model, which file should I use?
This is TF Saver v2, you should use "tflearn.model"
But there is no .model file . My file explorer shows only the three files mentioned above.
Yes, but TF just need the prefix "tflearn.model", and it will load the 3 files.
model.load("tflearn.model")
Yup, that worked. Thanks alot
Most helpful comment
This is TF Saver v2, you should use "tflearn.model"