Skip to content

Latest commit

 

History

History
39 lines (24 loc) · 867 Bytes

File metadata and controls

39 lines (24 loc) · 867 Bytes

Web APP for MXNet Gluon Style Transfer

Build on the repo: MXNet-Gluon-Style-Transfer

This repo create a style transfer web app using mxnet gluon api and python.

  • Backend: flask
  • Frontend: jquery+bootstrap
  • Model parameters from link

Prerequisites

Only Tested on Python 2.7 environment

Require Python package:mxnet, flask

Install packages (with CUDA 8.0 installed first):

pip install mxnet-cu80 flask

or (use CPU only)

pip install mxnet flask

How to run?

Note: Default use CPU to compute, modify app.py line12 CTX=mx.cpu(0) to CTX=mx.gpu(0) to enable GPU computing

Start server:

python app.py

Go to http://127.0.0.1:5000 , and have fun!