Skip to content

Instantly share code, notes, and snippets.

@frogermcs
Created June 4, 2019 20:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save frogermcs/258aa632a55516a27d77888787c69d49 to your computer and use it in GitHub Desktop.
Save frogermcs/258aa632a55516a27d77888787c69d49 to your computer and use it in GitHub Desktop.
#Download and unpack MobileNet v2 model from https://www.tensorflow.org/lite/guide/hosted_models
!curl -LO http://download.tensorflow.org/models/tflite_11_05_08/mobilenet_v2_1.0_224.tgz
!curl -LO https://storage.googleapis.com/download.tensorflow.org/data/ImageNetLabels.txt
!tar -xvzf mobilenet_v2_1.0_224.tgz
# List of unpacked files
# >> mobilenet_v2_1.0_224.ckpt.data-00000-of-00001
# >> mobilenet_v2_1.0_224.ckpt.index
# >> mobilenet_v2_1.0_224.ckpt.meta
# >> mobilenet_v2_1.0_224_eval.pbtxt
# >> mobilenet_v2_1.0_224_frozen.pb
# >> mobilenet_v2_1.0_224_info.txt
# >> mobilenet_v2_1.0_224.tflite
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment