After training, four files are created.
1) model_1_nimish.index
2) model_1_nimish.meta
3) model_1_nimish.data00000-of-00001
4) checkpoint
Which is the file that holds the trained weights? Also, I have trained it on my friend's PC and I want to use it on my own machine. What all files will I have to copy from my friend's PC?
So this is the new version(version2) of saver. To load the model, simply give the prefix to the load method. Ex: load('model_1_nimish') and it'll do the job
After training, four files are created. 1) model_1_nimish.index 2) model_1_nimish.meta 3) model_1_nimish.data00000-of-00001 4) checkpoint Which is the file that holds the trained weights? Also, I have trained it on my friend's PC and I want to use it on my own machine. What all files will I have to copy from my friend's PC?