Logan
Logan
#130 "Text templates with recursion and simulation" I have a tree of possible events in the story and then a recursive template that says which events to choose when creating...
Goods news: I got cycleDiffusion running in automatic https://github.com/nagolinc/auto_cycleDiffusion/tree/main Bad news: It uses a *ton* of VRAM (can't run in 16gb free colab)
I started creating a script (https://gist.github.com/nagolinc/864b142c2cd8ca613a508d29e3d23a17) to do inpainting based off of the RunwayML repo. But my computer runs out of VRAM when I try to use it. If someone...
> > I started creating a script (https://gist.github.com/nagolinc/864b142c2cd8ca613a508d29e3d23a17) to do inpainting based off of the RunwayML repo. But my computer runs out of VRAM when I try to use it....
@willlllllio Yeah, my implementation was just inefficent (loading full model in addition to already loaded model)
@bbecausereasonss Looks like @random-thoughtss has created a working implementation here! https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/3192
Hmm... if I checkout c6f4a873d7c8a916814e3201044b84b72e09769a and save https://raw.githubusercontent.com/runwayml/stable-diffusion/main/configs/stable-diffusion/v1-inpainting-inference.yaml (with additional use_ema:false parameter) as {models}/sd-v1-5-inpainting.yaml I get the error ``` return F.conv2d(input, weight, bias, self.stride, RuntimeError: Given groups=1, weight of size...
> The results from the [paper](https://arxiv.org/pdf/2211.01324.pdf) look much better. 
Okay, I was able to convert @pbaylies sdu.txt into a script for automatic1111 https://gist.github.com/nagolinc/3993e7329cafab5d5bd4698977ebebcc Before you can run it, you will need to download the two files: https://models.rivershavewings.workers.dev/config_laion_text_cond_latent_upscaler_2.json https://models.rivershavewings.workers.dev/laion_text_cond_latent_upscaler_2_1_00470000_slim.pth into...
The source of the bug is that the del method https://github.com/chroma-core/chroma/blob/main/chromadb/db/duckdb.py#L444 is gettting called after other resources such as logger and os have already been deleted. You can call call...