Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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.