2018년 4월 12일 목요일

quiver_engine 설치 오류 해결 방법

https://github.com/keplr-io/quiver/issues/32


agree with upstair, detail desrcription:
  1. search keyword "quiver“ at pypi webside (https://pypi.python.org/pypi);
  2. download one of quiver package name "quiver_engine 0.1.4.1.4";
  3. unzip it on local disk and "cd ....\quiver_engine 0.1.4.1.4\”;
  4. just run "pip install -e .", it will auto call setup.py, then quiver_engine installed without any problem;
  5. run python under dos "cmd";
  6. just for test, type "from quiver_engine impor server" and no error is reported;
  7. just for use in keras, look detail on function server.lunch, type "help(quiver_engine.server.lanuch", you will find it suggest only 5 parameter like below and NEEDN'T CLASSES MEAN STD TOP these 4 parameters!!!"

help(server.launch)
Help on function launch in module quiver_engine.server:
launch(model, temp_folder='./tmp', input_folder='./', port=5000, html_base_dir=None)

  1. it you add codes below, you MUST first make dir you need first!
    server.launch(model = model,temp_folder='./quiver/tmp',input_folder='./quiver/input_imgs',port=5000)
    9, run codes with launch function in pycharm or python, quiver_engine will OPEN A WEBPAGE show your images (you FIRST copy to input_folder before run codes) and select it to see feature maps in your diagram show also on web page's left frame.
  2. if it run OK as mentioned in step 9, you trains will BLOCKED by quiver_engine!

댓글 없음:

댓글 쓰기