Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: about 5 hours 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 (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2024-10-29T07:18:51.000Z (20 days ago)
- Last Synced: 2024-10-29T08:21:06.411Z (20 days 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.