Web application (React + Django) for performing a neural style transfer (NST) that adopts a style from one image to another while preserving its content.
Based on NST implementation from Hugging Face
This application uses Python 3.9
Clone the project
git clone https://github.com/Fadion96/image_enhancerGo to the project directory
cd image_enhancer/Install backend required libraries
pip install -r requirements/requirements.txtInstall frontend dependencies
cd frontend/
npm installMigrate models to the database and run the server
cd backend/
python manage.py migrate
python manage.py runserverRun frontend
cd frontend/
npm start
