https://github.com/curegit/stylegan-web
Example configurations for deploying StyleGAN with web UI using Docker
https://github.com/curegit/stylegan-web
docker docker-compose generative-adversarial-network github-container-registry image-synthesis stylegan2
Last synced: 4 months ago
JSON representation
Example configurations for deploying StyleGAN with web UI using Docker
- Host: GitHub
- URL: https://github.com/curegit/stylegan-web
- Owner: curegit
- License: other
- Created: 2022-12-13T07:08:41.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2025-03-08T13:14:25.000Z (4 months ago)
- Last Synced: 2025-03-08T14:20:02.659Z (4 months ago)
- Topics: docker, docker-compose, generative-adversarial-network, github-container-registry, image-synthesis, stylegan2
- Language: Dockerfile
- Homepage: https://github.com/curegit/stylegan-fastapi
- Size: 35.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# StyleGAN Web Containers
This project provides sample configurations for deploying StyleGAN models and web-based user interface using Docker, integrated with FastAPI for the backend and Vue.js for the frontend.
This repository consists of the following two submodules:
- [StyleGAN FastAPI](https://github.com/curegit/stylegan-fastapi)
- [StyleGAN Vue](https://github.com/curegit/stylegan-vue)## Compose Locally
```sh
git clone --recursive https://github.com/curegit/stylegan-web.git
cd stylegan-web
docker compose build
docker compose up
```## Pull from GHCR
```sh
# API Server
docker run -d -p 8000:8000 "ghcr.io/curegit/stylegan-web-server:master"
# Client
docker run -d -p 8080:80 --env VITE_STYLEGAN_API="http://localhost:8000" "ghcr.io/curegit/stylegan-web-client:master"
```## License
This project is licensed under the [CC BY-NC 4.0](LICENSE).
Please refer to the licenses of the submodules as well.