https://github.com/replicate/clipdraw-interactive
An interactive and API powered CLIPDraw
https://github.com/replicate/clipdraw-interactive
Last synced: 9 months ago
JSON representation
An interactive and API powered CLIPDraw
- Host: GitHub
- URL: https://github.com/replicate/clipdraw-interactive
- Owner: replicate
- License: apache-2.0
- Created: 2022-05-10T15:05:03.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-11-04T10:03:24.000Z (about 3 years ago)
- Last Synced: 2023-03-10T12:29:11.095Z (almost 3 years ago)
- Language: JavaScript
- Homepage: https://interactive-clip-draw.vercel.app/
- Size: 3.8 MB
- Stars: 21
- Watchers: 11
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Interactive CLIPDraw

Interactive version of [CLIPDraw](https://replicate.com/kvfrans/clipdraw), running on https://interactive-clip-draw.vercel.app/
## Install dependencies
### venv
```sh
python3 -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
```
### conda
```sh
conda create -n clipdraw
conda activate clipdraw
pip install -r requirements.txt
```
## Run locally
```sh
export REPLICATE_API_TOKEN=
python app.py
```
Open https://localhost:5000.
## Deploy
Interactive CLIPDraw is deployed on [Vercel](https://vercel.com).
To deploy your own version:
* Create an account on Vercel
* Install the [Vercel CLI](https://vercel.com/docs/cli)
* `vercel login`
* `vercel --prod`