oracle / graphpipe-py

GraphPipe for python
https://oracle.github.io/graphpipe
Other
42 stars 10 forks source link

unable to dial up #4

Closed leeadh closed 6 years ago

leeadh commented 6 years ago

ran this command : docker run -it --rm -e https_proxy=${https_proxy} -p 9000:9000 sleepsonthefloor/graphpipe-tf:cpu --model=https://oracle.github.io/graphpipe/models/squeezenet.pb --listen=0.0.0.0:9000

But it gave me this error

ERRO[0000] Failed to get 'https://oracle.github.io/graphpipe/models/squeezenet.pb': Get https://oracle.github.io/graphpipe/models/squeezenet.pb: proxyconnect tcp: dial tcp :0: connect: connection refused ERRO[0000] Could not read 'https://oracle.github.io/graphpipe/models/squeezenet.pb': Get https://oracle.github.io/graphpipe/models/squeezenet.pb: proxyconnect tcp: dial tcp :0: connect: connection refused ERRO[0000] Failed to load 'https://oracle.github.io/graphpipe/models/squeezenet.pb': Get https://oracle.github.io/graphpipe/models/squeezenet.pb: proxyconnect tcp: dial tcp :0: connect: connection refused ERRO[0000] Failed to serve: Get https://oracle.github.io/graphpipe/models/squeezenet.pb: proxyconnect tcp: dial tcp :0: connect: connection refused

Any idea why

vishvananda commented 6 years ago

Are you able to download the model locally via curl?

curl -O https://oracle.github.io/graphpipe/models/squeezenet.pb

If that works, then perhaps your docker installation does not have its network configured properly?

leeadh commented 6 years ago

I got it. I was on a vpn and after i placed in my proxy it worked fine. thank you so much