をまだ十分なクレジットがないので質問してください。だから私にあなたに一般的な答えを教えてください。
はあなたが言及したinception-2015-12-05.tgz
ファイルが必要な2つのファイルが含まれています
A)imagenet_comp_graph_label_strings.txt
B)tensorflow_inception_graph.pb
ライセンスファイルがあることあなたは同様に必要としません。これらの2つのファイルは、画像の予測を可能にします。
the model was not saved after a reboot, so I had to download it again via the same script
が私に興味を持っています。私はこのような問題に遭遇したことはありません。今すぐ試してみてください:
- あなたが選んだ場所にフォルダを作成してください。と言ってください
~/Documents
。
- pythonスクリプト
classify_image.py
を実行するときに--model_dir
フラグを使用して、モデルファイルディレクトリを~/Documents
にリダイレクトします。これは本質的に、指定された場所に必要なファイルをダウンロードして抽出し、それ以降は--model_dir
フラグの同じ場所を使用することができます。
はこれを見てみましょう:
Aruns-MacBook-Pro:imagenet arundas$ python classify_image.py --model_dir ~/Documents/
>> Downloading inception-2015-12-05.tgz 100.0%
Succesfully downloaded inception-2015-12-05.tgz 88931400 bytes.
W tensorflow/core/framework/op_def_util.cc:332] Op BatchNormWithGlobalNormalization is deprecated. It will cease to work in GraphDef version 9. Use tf.nn.batch_normalization().
giant panda, panda, panda bear, coon bear, Ailuropoda melanoleuca (score = 0.89233)
indri, indris, Indri indri, Indri brevicaudatus (score = 0.00859)
lesser panda, red panda, panda, bear cat, cat bear, Ailurus fulgens (score = 0.00264)
custard apple (score = 0.00141)
earthstar (score = 0.00107)
Aruns-MacBook-Pro:imagenet arundas$ python classify_image.py --model_dir ~/Documents/
W tensorflow/core/framework/op_def_util.cc:332] Op BatchNormWithGlobalNormalization is deprecated. It will cease to work in GraphDef version 9. Use tf.nn.batch_normalization().
giant panda, panda, panda bear, coon bear, Ailuropoda melanoleuca (score = 0.89233)
indri, indris, Indri indri, Indri brevicaudatus (score = 0.00859)
lesser panda, red panda, panda, bear cat, cat bear, Ailurus fulgens (score = 0.00264)
custard apple (score = 0.00141)
earthstar (score = 0.00107)
モデルを2回ダウンロードされていませんでした。 これが役立つことを願っています。
ありがとう! 2番目のダウンロードはおそらく私が入っていたvirtualenvを非アクティブ化するのを忘れたからです。 しかし、2つの必要なファイルをarchieveから直接/ tmp/imagenetに保存できますか? – Woppa
ありがとう@Arun、btw .. – Woppa
はい、 '--model_dir'フラグを使ってファイルを使用できます。 –