コマンドの構文が誤っています。と怒られます。
何処が間違っているのか何方か教えてください。
<行いたいこと>
オライリーの本を読み、下記のGitHubのURLのコードを参考にし、quiverを使用しlocalHost5000に./sample_images内の画像を表示したいと思っております
しかし、本に書いてある手順通りに行っても上手く起動しませんでした
他のサイトやQiita等で見てみても参考になるものはありましたが私と同じ症状が出ている方がおらず質問させていただきました
<参考URL>
https://github.com/oreilly-japan/deep-learning-with-keras-ja
↑これをzipでCドライブにダウンロード後、deep-learning-with-keras-ja-master内のch2にソースコードとプログラムが御座いました
<実行環境>
環境:Windows10 pro 64,
anacondaのpython3.6系を使用し、pipで下記をインストール
keras==2.1.6
tensorflow==1.8.0
gevent==1.2.2
git+https://github.com/SnowMasaya/quiver
h5py==2.7.1
mkdirにて./sample_imagesを作成済。また作ったフォルダ内に画像は75枚入っております
portを8000に変えても上手くいかなく、ずっと困っております
何卒宜しくお願い致します
(quiver2) C:\Users\user>cd C:\Users\user.conda\envs\quiver2\deep-learning-with-keras-ja-master\deep-learning-with-keras-ja-master\ch02 (quiver2) C:\Users\user.conda\envs\quiver2\deep-learning-with-keras-ja-master\deep-learning-with-keras-ja-master\ch02>python Python 3.6.8 |Anaconda, Inc.| (default, Feb 21 2019, 18:30:04) [MSC v.1916 64 bit (AMD64)] on win32 Type "help", "copyright", "credits" or "license" for more information. >>> from keras.applications.vgg16 import VGG16 C:\Users\user.conda\envs\quiver2\lib\site-packages\h5py\__init__.py:36: FutureWarning: Conversion of the second argument of issubdtype from `float` to `np.floating` is deprecated. In future, it will be treated as `np.float64 == np.dtype(float).type`. from ._conv import register_converters as _register_converters Using TensorFlow backend. >>> from quiver_engine import server >>> model = VGG16() 2019-05-14 19:21:35.458989: I T:\src\github\tensorflow\tensorflow\core\platform\cpu_feature_guard.cc:140] Your CPU supports instructions that this TensorFlow binary was not compiled to use: AVX2 2019-05-14 19:21:35.730466: W T:\src\github\tensorflow\tensorflow\core\framework\allocator.cc:101] Allocation of 411041792 exceeds 10% of system memory. 2019-05-14 19:21:36.533161: W T:\src\github\tensorflow\tensorflow\core\framework\allocator.cc:101] Allocation of 411041792 exceeds 10% of system memory. 2019-05-14 19:21:37.243149: W T:\src\github\tensorflow\tensorflow\core\framework\allocator.cc:101] Allocation of 411041792 exceeds 10% of system memory. >>> server.launch(model, input_folder='./sample_images', temp_folder='./tmp', port=5000) コマンドの構文が誤っています。 Starting webserver from: C:\Users\user.conda\envs\quiver2\lib\site-packages\quiver_engine ::1 - - [2019-05-14 19:21:44] "GET /model HTTP/1.1" 200 11079 0.018002 ::1 - - [2019-05-14 19:21:44] "GET /inputs HTTP/1.1" 200 142 0.009018
上記を実行すると
の様になるだけでフォルダ内の画像などが表示されません
pathが通っていないだけでしょうか?
何卒ご指導よろしくお願いいたします。
皆様からの御指摘をいただき質問方法を修正いたしました。
誠にありがとうございます。
回答2件
あなたの回答
tips
プレビュー