asagi4

Results 18 comments of asagi4

> * But a node can not help between steps Can't you create a node that installs a model wrapper function (there's an interface for that) and just waits when...

I applied this to my installation and it fixed a memory leak issue I'd been having with switching models. The webui no longer seems to randomly OOM if I'm switching...

I managed to trigger an error like this by running out of VRAM mid-generation and then trying to run another generation. ``` Traceback (most recent call last): File "/home/sd/.conda/envs/sd/lib/python3.11/threading.py", line...

> * It allows for more hacking on nodes by letting people bypass min/max and try new things not expected (like negative ControlNet weights) I agree with this. The min/max...

Should the node restore the old value after the image has been loaded? It seems to be a module global and that looks like setting it might affect nodes that...

I think changing the node's default filename prefix to `%date:yyyy-MM-dd%/ComfyUI` would be a better way to do this (someone else needs to test if it works on Windows). I agree...

@shawnington I think localization would make things way too complex for the problem that it would solve. YYYY-MM-DD is the ISO standard and it also has the nice property of...

> Perhaps modification of the SaveImage node to have an enable disable option to place the user specified subfolder inside the date folder, or in the base directory is a...

The filename prefix will never be None because the nodes all have defaults for it. What I'm talking about it just doing this: ``` index 50deb29..bf7f44b 100644 --- a/nodes.py +++...

@harelc the generator can be None when no seed is supplied and it'll use the "global" RNG.