In trying to run the server code, I found a few problems:
First, parts of the command seem to assume you're in the server directory and parts assume that you're in the top directory. The following command worked for me from the top directory:
There are some package requirements that are not specified anywhere. I was able to fix them with the following command, but it'd probably be good to add them to the conda environment:
I can fix the first two and send a PR, but the second one I'm not sure where to get the requisite file. For the time being I'll try to work around this by disabling atis in the server.
In trying to run the server code, I found a few problems:
First, parts of the command seem to assume you're in the
server
directory and parts assume that you're in the top directory. The following command worked for me from the top directory:PYTHONPATH=. python server/app.py --config_file config/server/config_py3.json
There are some package requirements that are not specified anywhere. I was able to fix them with the following command, but it'd probably be good to add them to the conda environment:
pip install flask python-rex
I got stuck on this bug, which prevented it from working on atis: https://github.com/pcyin/tranX/issues/9
I can fix the first two and send a PR, but the second one I'm not sure where to get the requisite file. For the time being I'll try to work around this by disabling atis in the server.