Results 6 comments of ecal

shoutout @jamapag, looks like warp just doesn't handle and ^j (ctrl+j) binds well in general seems not to play nice with bindkey?

You need to clone the [multidiffusion upscaler](https://github.com/pkuliyi2015/multidiffusion-upscaler-for-automatic1111) and [controlnet](https://github.com/Mikubill/sd-webui-controlnet/tree/1.1.436) extensions to `extensions/`. For the controlnet extension, the most recent version does not work with this repo, so clone tag [1.1.436](https://github.com/Mikubill/sd-webui-controlnet/releases/tag/1.1.436):...

also need to add the vae to `download_weights.py` ```python # VAE download_file( "https://huggingface.co/stabilityai/sd-vae-ft-mse-original/resolve/main/vae-ft-mse-840000-ema-pruned.safetensors?download=true", "models/VAE", "vae-ft-mse-840000-ema-pruned.safetensors" ) ```

For the controlnet extension, the most recent version does not work with this repo, so clone tag [1.1.436](https://github.com/Mikubill/sd-webui-controlnet/releases/tag/1.1.436): `git clone --depth 1 --branch 1.1.436 [email protected]:Mikubill/sd-webui-controlnet.git`

as of the current version of the repo, you need to add the vae to download weights: ```python # VAE download_file( "https://huggingface.co/stabilityai/sd-vae-ft-mse-original/resolve/main/vae-ft-mse-840000-ema-pruned.safetensors?download=true", "models/VAE", "vae-ft-mse-840000-ema-pruned.safetensors" ) ``` You also need to...

also make sure docker has access to your gpu. for me that's by using `nvidia-docker` and running `cog` with `sudo` for fellow nix users: ```nix virtualisation.docker = { enable =...