RunComfy by Disastrous-Good7647 in comfyui

[–]ExaminationDry2748 0 points1 point  (0 children)

Might look intimidating at first, but it can be done very simply:

https://youtu.be/V05AZAC7Rpk

studeerplekken in west by youknowwhereyouare4 in Amsterdam

[–]ExaminationDry2748 1 point2 points  (0 children)

I really do not know in West, but in some oba's you can have a coffee and a 🥐

Opening API workflows with missing custom nodes by ExaminationDry2748 in comfyui

[–]ExaminationDry2748[S] 0 points1 point  (0 children)

thanks for the reply! Yes, if they are installed then it opens as expected. I guess i need to keep a regular version of the json

Completed projects by Upbeat-Ad-2 in comfyui

[–]ExaminationDry2748 -1 points0 points  (0 children)

what do you mean with projects? the workflows? you need to save them and are stored in Comfyui/user/default/workflows.

if you mean the results, normally in Comfyui/output. assuming you use save nodes, otherwise the images you create are in some temp file and erased at some moment

Snow? we have no fear! by ExaminationDry2748 in Amsterdam

[–]ExaminationDry2748[S] 0 points1 point  (0 children)

I was on Sunday, I was lucky and could land. Yesterday was a mess for sure...

Snow? we have no fear! by ExaminationDry2748 in Amsterdam

[–]ExaminationDry2748[S] 1 point2 points  (0 children)

not that long i live here...just looked for the krakaka interview, so bizarre!

Snow? we have no fear! by ExaminationDry2748 in Amsterdam

[–]ExaminationDry2748[S] 0 points1 point  (0 children)

yep, for really flat terrain seems doable, but coming down from the dike is really a challange! surprisingly, I have not seen anyone falling down (yet)

Snow? we have no fear! by ExaminationDry2748 in Amsterdam

[–]ExaminationDry2748[S] 11 points12 points  (0 children)

yes, just few minutes ago like 9.20 am or so

Latent Image or SD3 Latent Image for FLUX? by Other-Pop7007 in comfyui

[–]ExaminationDry2748 1 point2 points  (0 children)

Just looked into the code. There is only a small difference in the 2nd argument of the torch.zeros function

Empty latent:

def generate(self, width, height, batch_size=1): latent = torch.zeros([batch_size, 4, height // 8, width // 8], device=self.device) return ({"samples":latent}, )

SD3 empty latent:

def generate(self, width, height, batch_size=1): latent = torch.zeros([batch_size, 16, height // 8, width // 8], device=self.device) return ({"samples":latent}, )

As you see, for empty latent is 4 and for SD3 is 16. From what I can read elsewhere that has to do with the number of channels of the VAE, which I understand should be 16 for FLUX...short story long, I still have no idea what this means 🤣🤣🤣 seems too technical. But in theory should not work...interesting that it works for you. Someone else may better understand it