├── .gitignore ├── Makefile ├── README.md ├── backend ├── Dockerfile ├── __init__.py ├── config.py ├── inference.py ├── main.py └── requirements.txt ├── docker-compose.yml ├── download_models.sh └── frontend ├── Dockerfile ├── __init__.py ├── main.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amalshaji/style-transfer/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amalshaji/style-transfer/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amalshaji/style-transfer/HEAD/README.md -------------------------------------------------------------------------------- /backend/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amalshaji/style-transfer/HEAD/backend/Dockerfile -------------------------------------------------------------------------------- /backend/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amalshaji/style-transfer/HEAD/backend/config.py -------------------------------------------------------------------------------- /backend/inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amalshaji/style-transfer/HEAD/backend/inference.py -------------------------------------------------------------------------------- /backend/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amalshaji/style-transfer/HEAD/backend/main.py -------------------------------------------------------------------------------- /backend/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amalshaji/style-transfer/HEAD/backend/requirements.txt -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amalshaji/style-transfer/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /download_models.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amalshaji/style-transfer/HEAD/download_models.sh -------------------------------------------------------------------------------- /frontend/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amalshaji/style-transfer/HEAD/frontend/Dockerfile -------------------------------------------------------------------------------- /frontend/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amalshaji/style-transfer/HEAD/frontend/main.py -------------------------------------------------------------------------------- /frontend/requirements.txt: -------------------------------------------------------------------------------- 1 | streamlit==1.2.0 --------------------------------------------------------------------------------