Skip to content

Latest commit

 

History

History
38 lines (24 loc) · 1.28 KB

File metadata and controls

38 lines (24 loc) · 1.28 KB

A dedicated dedicated website for demonstrating the principles shown in the paper:

Autoencoders as Tools for Program Synthesis

Requirements

You need to install the following packages on your machine:

Furthermore, install the packages from the requirements.txt file:

pip install -r requirements.txt

Set up

Make sure that the dependencies listed above are installed, then run

make

Verify that the file .libclang holds the correct path to libclang.so library file on your machine. make tries to determine its location automatically, but mistakes can happen. Edit if necessary.

Start the app

  • The app can be started by running cd api && flask run

Deployment

  • The app can be started by running gunicorn -w {NUMBER_OF_WORKERS} -b {ADDRESS} api.api:app
  • For more tips on deployment look here