From 2f101eb57328af8dc6e02587a9c08e5e12cd2a96 Mon Sep 17 00:00:00 2001 From: Justin Pinkney Date: Sun, 4 Sep 2022 17:22:56 -0400 Subject: [PATCH] update instructions --- README.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/README.md b/README.md index 5d9857c..f02dffb 100644 --- a/README.md +++ b/README.md @@ -6,8 +6,20 @@ _TODO describe in more detail_ +- Get access to a Linux machine with a decent NVIDIA GPU (e.g. on [Lambda GPU Cloud](https://lambdalabs.com/service/gpu-cloud)) +- Clone this repo +- Make sure PyTorch is installed and then install other requirements: `pip install -r requirements.txt` - Get model from huggingface hub [lambdalabs/stable-diffusion-image-conditioned](https://huggingface.co/lambdalabs/stable-diffusion-image-conditioned/blob/main/sd-clip-vit-l14-img-embed_ema_only.ckpt) - Put model in `models/ldm/stable-diffusion-v1/sd-clip-vit-l14-img-embed_ema_only.ckpt` - Run `scripts/image_variations.py` or `scripts/gradio_variations.py` +All together: +``` +git clone https://github.com/justinpinkney/stable-diffusion.git +cd stable-diffusion +mkdir -p models/ldm/stable-diffusion-v1 +wget https://huggingface.co/lambdalabs/stable-diffusion-image-conditioned/resolve/main/sd-clip-vit-l14-img-embed_ema_only.ckpt -O models/ldm/stable-diffusion-v1/sd-clip-vit-l14-img-embed_ema_only.ckpt +scripts/gradio_variations.py +``` + Trained by [Justin Pinkney](https://www.justinpinkney.com) ([@Buntworthy](https://twitter.com/Buntworthy)) at [Lambda](https://lambdalabs.com/) \ No newline at end of file