├── README.md ├── app.py ├── server/ ├── torch_deform_conv/ ├── predict.py ├── <model_file> ├── models.py ├── layers.py └── utils.html └── static/ ├── dist/ ├── script/ ├── index.jsx └── main.jsx ├── style/ └── main.css └── index.html
- in the project root folder, run
python app.py
in Terminal - url: localhost:5000
- change directory into the static folder, run
npm run dev
in Terminal - url: localhost:8080
- remember to clear browser cache
- change directory into the static folder, run
npm install
and thennpm run watch
in Terminal
- Front-end: using ReactJS to render the front-end buttons, jQuery to handle AJAX communications
- Back-end: using Python in Flask framework to serve as the back-end server.
Otenim/GLCIC-PyTorch oeway/pytorch-deform-conv