You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have built and run the docker container but it does not work.
It give me the following output:
`~$ curl http://localhost:8888/detect-frames?sentence=i bought a new car
curl: (52) Empty reply from server
curl: (6) Could not resolve host: bought
curl: (6) Could not resolve host: a
curl: (6) Could not resolve host: new
curl: (6) Could not resolve host: car`
While for trying: curl http://localhost:8888/
It give me the following output: {"name":"Frame Semantic Transformer Demo"}
I am uncertain if I am making any mistakes.
The text was updated successfully, but these errors were encountered:
I think the issue is that bash is trying to parse the parts of the URL and is messing up curl. Also the spaces aren't URL-encoded, although I'm not sure if that's important. Try running it as follows:
I tried using curl and wget both following your approach but it still giving no reply. Now instead of giving multiple responses from server, it gives only single response as below:
How much memory are you giving to docker? It's possible it's running out of memory running the model. You can try increasing the memory, or you can run the following to use the small model:
Hi,
I have built and run the docker container but it does not work.
It give me the following output:
While for trying:
curl http://localhost:8888/
It give me the following output:
{"name":"Frame Semantic Transformer Demo"}
I am uncertain if I am making any mistakes.
The text was updated successfully, but these errors were encountered: