We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The checkpoints of pre-trained MobileNet are as follows:
mobilenet_v1_1.0_224.ckpt.data-00000-of-00001 mobilenet_v1_1.0_224.ckpt.index mobilenet_v1_1.0_224.ckpt.meta
rather than one single checkpoint file like:
resnet_v1_101.ckpt
I take a look at the code in feature_extractor.py. It looks that using a directory was not working.
# Find the checkpoint file checkpoint_path = self._checkpoint_path if tf.gfile.IsDirectory(self._checkpoint_path): checkpoint_path = tf.train.latest_checkpoint(self._checkpoint_path)
Could you pls give an advice?
The text was updated successfully, but these errors were encountered:
have you solve this problem,i also wang to extract features using checkpoint file, thanks
Sorry, something went wrong.
@jackchowtop1 Not yet. I am still working on. But I can extract features on most models. Pls see https://github.com/zengsn/TF_FeatureExtraction/
No branches or pull requests
The checkpoints of pre-trained MobileNet are as follows:
rather than one single checkpoint file like:
I take a look at the code in feature_extractor.py. It looks that using a directory was not working.
Could you pls give an advice?
The text was updated successfully, but these errors were encountered: