RandomGitUser321
RandomGitUser321
It sounds like a bad template or something. Which exact model version are you using? If you're on windows, open `cmd` and type `ollama list` and paste the exact name...
@nmandic78 You can edit a few things and use BitsAndBytesConfig from transformers and load it in 4bit mode. Since my GPU is a 2080 and doesn't support bfloat16, I had...
Are you sure that you're showing the list of the comfy venv and not your system install of python? To check comfy's venv, you'd need to run `RESTOFYOURPATH\ComfyUI\python_embeded\python -m pip...
> torch 2.4.0+CUDA12.1 with xformers 0.0.27.post2 This might be a problem. They don't recommend using 2.4 yet with windows, should be 2.3.1+cu121 if I recall correctly. There are some issues...
I commented on your post in the GGUF repo: https://github.com/city96/ComfyUI-GGUF/issues/54#issuecomment-2300129278
That's due to the perlin noise node attached to it. Within the noise_latent_perlinpinpin addon: ``` def create_noisy_latents_perlin(self, seed, width, height, batch_size, detail_level): torch.manual_seed(seed) noise = torch.zeros((batch_size, 4, height // 8,...
Looking through a few of the noise addons on comfy manager, they all seem to use the same 4 channel setup and I haven't seen any that handle 16 channels....
> It's also important to note that `person (smiling:0.0)` also outputs a person smiling. What about the space between person and smiling? As far as I know, there's a difference...
Are you sure it's not getting referenced in one of the imports or anything the imports import? Are you seeing any errors in the output log when using it(like if...
Well I searched for "import math" and saw that pretty much anything that use or interact with the class, seems to import math already. For instance, it's in nodes.py, which...