- 18 Dec, 2023 1 commit
-
-
comfyanonymous authored
-
- 15 Dec, 2023 1 commit
-
-
Hari authored
-
- 14 Dec, 2023 2 commits
-
-
comfyanonymous authored
-
comfyanonymous authored
-
- 13 Dec, 2023 2 commits
-
-
comfyanonymous authored
Moved all the sag related code to comfy_extras/nodes_sag.py
-
Rafie Walker authored
* First SAG test * need to put extra options on the model instead of patcher * no errors and results seem not-broken * Use @ashen-uncensored formula, which works better!!! * Fix a crash when using weird resolutions. Remove an unnecessary UNet call * Improve comments, optimize memory in blur routine * SAG works with sampler_cfg_function
-
- 08 Dec, 2023 1 commit
-
-
comfyanonymous authored
-
- 16 Nov, 2023 1 commit
-
-
comfyanonymous authored
This doesn't affect how percentages behave in the frontend but breaks things if you relied on them in the backend. percent_to_sigma goes from 0 to 1.0 instead of 1.0 to 0 for less confusion. Make percent 0 return an extremely large sigma and percent 1.0 return a zero one to fix imprecision.
-
- 15 Nov, 2023 1 commit
-
-
comfyanonymous authored
-
- 14 Nov, 2023 1 commit
-
-
comfyanonymous authored
This should make it much easier to write custom nodes with kdiffusion type samplers.
-
- 12 Nov, 2023 3 commits
-
-
comfyanonymous authored
-
comfyanonymous authored
-
comfyanonymous authored
-
- 11 Nov, 2023 1 commit
-
-
comfyanonymous authored
This was broken because of recent changes so I fixed it and moved it from the experiments repo.
-
- 09 Nov, 2023 1 commit
-
-
comfyanonymous authored
Use the "lcm" sampler to sample them, you also have to use the ModelSamplingDiscrete node to set them as lcm models to use them properly.
-
- 03 Nov, 2023 1 commit
-
-
comfyanonymous authored
Converting Nan to zero is a bad idea because it makes it hard to tell when something went wrong.
-
- 02 Nov, 2023 1 commit
-
-
comfyanonymous authored
This should make things that use sampler_cfg_function behave like before. Added an input argument for those that want the denoised output. This means you can calculate the x0 prediction of the model by doing: (input - cond) for example.
-
- 01 Nov, 2023 3 commits
-
-
comfyanonymous authored
-
comfyanonymous authored
-
comfyanonymous authored
-
- 31 Oct, 2023 2 commits
-
-
comfyanonymous authored
DDIM is the same as euler with a small difference in the inpaint code. DDIM uses randn_like but I set a fixed seed instead. I'm keeping it in because I'm sure if I remove it people are going to complain.
-
comfyanonymous authored
apply_model in model_base now returns the denoised output. This means that sampling_function now computes things on the denoised output instead of the model output. This should make things more consistent across current and future models.
-
- 25 Oct, 2023 1 commit
-
-
comfyanonymous authored
-
- 24 Oct, 2023 1 commit
-
-
comfyanonymous authored
-
- 20 Oct, 2023 1 commit
-
-
comfyanonymous authored
-
- 19 Oct, 2023 2 commits
-
-
comfyanonymous authored
-
comfyanonymous authored
-
- 18 Oct, 2023 1 commit
-
-
comfyanonymous authored
-
- 29 Sep, 2023 1 commit
-
-
comfyanonymous authored
-
- 28 Sep, 2023 1 commit
-
-
comfyanonymous authored
-
- 26 Sep, 2023 2 commits
-
-
comfyanonymous authored
-
comfyanonymous authored
-
- 21 Sep, 2023 1 commit
-
-
comfyanonymous authored
-
- 16 Sep, 2023 1 commit
-
-
comfyanonymous authored
cond and what is uncond.
-
- 15 Sep, 2023 1 commit
-
-
comfyanonymous authored
-
- 08 Sep, 2023 1 commit
-
-
comfyanonymous authored
-
- 06 Sep, 2023 1 commit
-
-
comfyanonymous authored
-
- 31 Aug, 2023 1 commit
-
-
comfyanonymous authored
-
- 18 Aug, 2023 1 commit
-
-
comfyanonymous authored
Control loras are controlnets where some of the weights are stored in "lora" format: an up and a down low rank matrice that when multiplied together and added to the unet weight give the controlnet weight. This allows a much smaller memory footprint depending on the rank of the matrices. These controlnets are used just like regular ones.
-
- 17 Aug, 2023 1 commit
-
-
comfyanonymous authored
Try to keep models on the vram when possible. Better lowvram mode for controlnets.
-