DoubleStreamBlock.forward() got an unexpected keyword argument 'attn_mask'
- Dominant language
- Python
- Stars
- 133k
- Forks
- 15.7k
- Avg merge
- 1d 7h
- Merged PRs (30d)
- 158
Description
### Expected Behavior

### Actual Behavior
After updating CompyUI-PuLID-Flux-Enhanced, I get this error.... I don't know why. Can you tell me how to fix it in detail?
### Steps to Reproduce
Expected all tensors to be on the same device, but found at least two devices, cuda:0 and cpu! (when checking argument for argument weight in method wrapper_CUDA__native_layer_norm)
I keep having problems so I update custom nodes and this error comes up this time..
### Debug Logs
```powershell
# ComfyUI Error Report
## Error Details
- **Node ID:** 68
- **Node Type:** KSampler
- **Exception Type:** TypeError
- **Exception Message:** DoubleStreamBlock.forward() got an unexpected keyword argument 'attn_mask'
## Stack Trace
File "C:\budleAI ver3\ComfyUI_windows_portable\ComfyUI\execution.py", line 324, in execute
output_data, output_ui, has_subgraph = get_output_data(obj, input_data_all, execution_block_cb=execution_block_cb, pre_execute_cb=pre_execute_cb)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\budleAI ver3\ComfyUI_windows_portable\ComfyUI\execution.py", line 199, in get_output_data
return_values = _map_node_over_list(obj, input_data_all, obj.FUNCTION, allow_interrupt=True, execution_block_cb=execution_block_cb, pre_execute_cb=pre_execute_cb)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\budleAI ver3\ComfyUI_windows_portable\ComfyUI\execution.py", line 170, in _map_node_over_list
process_inputs(input_dict, i)
File "C:\budleAI ver3\ComfyUI_windows_portable\ComfyUI\execution.py", line 159, in process_inputs
results.append(getattr(obj, func)(**inputs))
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\budleAI ver3\ComfyUI_windows_portable\ComfyUI\nodes.py", line 1465, in sample
return common_ksampler(model, seed, steps, cfg, sampler_name, scheduler, positive, negative, latent_image, denoise=denoise)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\budleAI ver3\ComfyUI_windows_portable\ComfyUI\nodes.py", line 1432, in common_ksampler
samples = comfy.sample.sample(model, noise, steps, cfg, sampler_name, scheduler, positive, negative, latent_image,
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\budleAI ver3\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-Impact-Pack\modules\impact\sample_error_enhancer.py", line 9, in informative_sample
return original_sample(*args, **kwargs) # This code helps interpret error messages that occur within exceptions but does not have any impact on other operations.
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\budleAI ver3\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-Advanced-ControlNet\adv_control\sampling.py", line 116, in acn_sample
return orig_comfy_sample(model, *args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\budleAI ver3\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-Advanced-ControlNet\adv_control\utils.py", line 117, in uncond_multiplier_check_cn_sample
return orig_comfy_sample(model, *args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\budleAI ver3\ComfyUI_windows_portable\ComfyUI\comfy\sample.py", line 43, in sample
samples = sampler.sample(noise, positive, negative, cfg=cfg, latent_image=latent_image, start_step=start_step, last_step=last_step, force_full_denoise=force_full_denoise, denoise_mask=noise_mask, sigmas=sigmas, callback=callback, disable_pbar=disable_pbar, seed=seed)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\budleAI ver3\ComfyUI_windows_portable\ComfyUI\comfy\samplers.py", line 1020, in sample
return sample(self.model, noise, positive, negative, cfg, self.device, sampler, sigmas, self.model_options, latent_image=latent_image, denoise_mask=denoise_mask, callback=callback, disable_pbar=disable_pbar, seed=seed)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\budleAI ver3\ComfyUI_windows_portable\ComfyUI\comfy\samplers.py", line 918, in sample
return cfg_guider.sample(noise, latent_image, sampler, sigmas, denoise_mask, callback, disable_pbar, seed)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\budleAI ver3\ComfyUI_windows_portable\ComfyUI\comfy\samplers.py", line 904, in sample
output = executor.execute(noise, latent_image, sampler, sigmas, denoise_mask, callback, disable_pbar, seed)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\budleAI ver3\ComfyUI_windows_portable\ComfyUI\comfy\patcher_extension.py", line 110, in execute
return self.original(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\budleAI ver3\ComfyUI_windows_portable\ComfyUI\comfy\samplers.py", line 873, in outer_sample
output = self.inner_sample(noise, latent_image, device, sampler, sigmas, denoise_mask, callback, disable_pbar, seed)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\budleAI ver3\ComfyUI_windows_portable\ComfyUI\comfy\samplers.py", line 857, in inner_sample
samples = executor.execute(self, sigmas, extra_args, callback, noise, latent_image, denoise_mask, disable_pbar)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\budleAI ver3\ComfyUI_windows_portable\ComfyUI\comfy\patcher_extension.py", line 110, in execute
return self.original(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\budleAI ver3\ComfyUI_windows_portable\ComfyUI\comfy\samplers.py", line 714, in sample
samples = self.sampler_function(model_k, noise, sigmas, extra_args=extra_args, callback=k_callback, disable=disable_pbar, **self.extra_options)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\budleAI ver3\ComfyUI_windows_portable\python_embeded\Lib\site-packages\torch\utils\_contextlib.py", line 116, in decorate_context
return func(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^
File "C:\budleAI ver3\ComfyUI_windows_portable\ComfyUI\comfy\k_diffusion\sampling.py", line 155, in sample_euler
denoised = model(x, sigma_hat * s_in, **extra_args)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\budleAI ver3\ComfyUI_windows_portable\ComfyUI\comfy\samplers.py", line 384, in __call__
out = self.inner_model(x, sigma, model_options=model_options, seed=seed)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\budleAI ver3\ComfyUI_windows_portable\ComfyUI\comfy\samplers.py", line 839, in __call__
return self.predict_noise(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\budleAI ver3\ComfyUI_windows_portable\ComfyUI\comfy\samplers.py", line 842, in predict_noise
return sampling_function(self.inner_model, x, timestep, self.conds.get("negative", None), self.conds.get("positive", None), self.cfg, model_options=model_options, seed=seed)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\budleAI ver3\ComfyUI_windows_portable\ComfyUI\comfy\samplers.py", line 364, in sampling_function
out = calc_cond_batch(model, conds, x, timestep, model_options)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\budleAI ver3\ComfyUI_windows_portable\ComfyUI\comfy\samplers.py", line 200, in calc_cond_batch
return executor.execute(model, conds, x_in, timestep, model_options)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\budleAI ver3\ComfyUI_windows_portable\ComfyUI\comfy\patcher_extension.py", line 110, in execute
return self.original(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\budleAI ver3\ComfyUI_windows_portable\ComfyUI\comfy\samplers.py", line 313, in _calc_cond_batch
output = model.apply_model(input_x, timestep_, **c).chunk(batch_chunks)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\budleAI ver3\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-Advanced-ControlNet\adv_control\utils.py", line 69, in apply_model_uncond_cleanup_wrapper
return orig_apply_model(self, *args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\budleAI ver3\ComfyUI_windows_portable\ComfyUI\comfy\model_base.py", line 128, in apply_model
return comfy.patcher_extension.WrapperExecutor.new_class_executor(
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\budleAI ver3\ComfyUI_windows_portable\ComfyUI\comfy\patcher_extension.py", line 110, in execute
return self.original(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\budleAI ver3\ComfyUI_windows_portable\ComfyUI\comfy\model_base.py", line 157, in _apply_model
model_output = self.diffusion_model(xc, t, context=context, control=control, transformer_options=transformer_options, **extra_conds).float()
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\budleAI ver3\ComfyUI_windows_portable\python_embeded\Lib\site-packages\torch\nn\modules\module.py", line 1553, in _wrapped_call_impl
return self._call_impl(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\budleAI ver3\ComfyUI_windows_portable\python_embeded\Lib\site-packages\torch\nn\modules\module.py", line 1562, in _call_impl
return forward_call(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\budleAI ver3\ComfyUI_windows_portable\ComfyUI\comfy\ldm\flux\model.py", line 184, in forward
out = self.forward_orig(img, img_ids, context, txt_ids, timestep, y, guidance, control, transformer_options)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\budleAI ver3\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-PuLID-Flux-Enhanced\pulidflux.py", line 124, in forward_orig
img, txt = block(img=img,
^^^^^^^^^^^^^^
File "C:\budleAI ver3\ComfyUI_windows_portable\python_embeded\Lib\site-packages\torch\nn\modules\module.py", line 1553, in _wrapped_call_impl
return self._call_impl(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\budleAI ver3\ComfyUI_windows_portable\python_embeded\Lib\site-packages\torch\nn\modules\module.py", line 1562, in _call_impl
return forward_call(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
```
## System Information
- **ComfyUI Version:** v0.3.7-8-ge2fafe0
- **Arguments:** ComfyUI\main.py --windows-standalone-build --fast
- **OS:** nt
- **Python Version:** 3.11.9 (tags/v3.11.9:de54cf5, Apr 2 2024, 10:12:12) [MSC v.1938 64 bit (AMD64)]
- **Embedded Python:** true
- **PyTorch Version:** 2.4.1+cu124
## Devices
- **Name:** cuda:0 NVIDIA GeForce RTX 4070 SUPER : cudaMallocAsync
- **Type:** cuda
- **VRAM Total:** 12878086144
- **VRAM Free:** 1313193216
- **Torch VRAM Total:** 8724152320
- **Torch VRAM Free:** 46988544
## Logs
```
2025-01-09T23:36:18.250079 - ### Loading: ComfyUI-Manager (V2.51.2)2025-01-09T23:36:18.251079 -
2025-01-09T23:36:18.359166 - ### ComfyUI Revision: 2898 [e2fafe06] | Released on '2024-12-09'2025-01-09T23:36:18.359166 -
2025-01-09T23:36:18.591968 - [ComfyUI-Manager] default cache updated: https://raw.githubusercontent.com/ltdrdata/ComfyUI-Manager/main/alter-list.json2025-01-09T23:36:18.592969 -
2025-01-09T23:36:18.597968 - [ComfyUI-Manager] default cache updated: https://raw.githubusercontent.com/ltdrdata/ComfyUI-Manager/main/model-list.json2025-01-09T23:36:18.597968 -
2025-01-09T23:36:18.624476 - [ComfyUI-Manager] default cache updated: https://raw.githubusercontent.com/ltdrdata/ComfyUI-Manager/main/custom-node-list.json2025-01-09T23:36:18.625476 -
2025-01-09T23:36:18.632475 - [ComfyUI-Manager] default cache updated: https://raw.githubusercontent.com/ltdrdata/ComfyUI-Manager/main/github-stats.json2025-01-09T23:36:18.632475 -
2025-01-09T23:36:18.650476 - [ComfyUI-Manager] default cache updated: https://raw.githubusercontent.com/ltdrdata/ComfyUI-Manager/main/extension-node-map.json2025-01-09T23:36:18.651476 -
2025-01-09T23:36:18.902504 - --------------
2025-01-09T23:36:18.902504 - [91m ### Mixlab Nodes: [93mLoaded
2025-01-09T23:36:18.908504 - json_repair## OK2025-01-09T23:36:18.908504 -
2025-01-09T23:36:18.910504 - ChatGPT.available True
2025-01-09T23:36:18.910694 - edit_mask.available True
2025-01-09T23:36:19.125084 - ## clip_interrogator_model not found: C:\budleAI ver3\ComfyUI_windows_portable\ComfyUI\models\clip_interrogator\Salesforce\blip-image-captioning-base, pls download from https://huggingface.co/Salesforce/blip-image-captioning-base2025-01-09T23:36:19.125084 -
2025-01-09T23:36:19.126084 - ClipInterrogator.available True
2025-01-09T23:36:19.146175 - TextGenerateNode.available False
2025-01-09T23:36:19.146175 - RembgNode_.available True
2025-01-09T23:36:19.149135 - ffmpeg could not be found. Using ffmpeg from imageio-ffmpeg.2025-01-09T23:36:19.149135 -
2025-01-09T23:36:19.407152 - TripoSR.available
2025-01-09T23:36:19.408152 - MiniCPMNode.available
2025-01-09T23:36:19.452659 - Scenedetect.available
2025-01-09T23:36:19.513660 - FishSpeech.available
2025-01-09T23:36:19.520150 - SenseVoice.available
2025-01-09T23:36:19.540150 - Whisper.available False
2025-01-09T23:36:19.540150 - fal-client## OK2025-01-09T23:36:19.541151 -
2025-01-09T23:36:19.547151 - FalVideo.available
2025-01-09T23:36:19.547151 - [93m -------------- [0m
2025-01-09T23:36:19.586150 - Use STYLE(weight_interpretation, normalization) at the start of a prompt to use advanced encodings
2025-01-09T23:36:19.586150 - Weight interpretations available: comfy,perp
2025-01-09T23:36:19.586150 - Normalization types available: none
2025-01-09T23:36:19.884674 - C:\budleAI ver3\ComfyUI_windows_portable\python_embeded\Lib\site-packages\albumentations\__init__.py:13: UserWarning: A new version of Albumentations is available: 2.0.0 (you have 1.4.16). Upgrade using: pip install -U albumentations. To disable automatic update checks, set the environment variable NO_ALBUMENTATIONS_UPDATE to 1.
check_for_updates()
2025-01-09T23:36:19.935067 - Please 'pip install xformers'2025-01-09T23:36:19.935067 -
2025-01-09T23:36:19.936068 - Nvidia APEX normalization not installed, using PyTorch LayerNorm2025-01-09T23:36:19.936068 -
2025-01-09T23:36:19.992068 - [0;33m[ReActor][0m - [38;5;173mSTATUS[0m - [0;32mRunning v0.5.1-b2 in ComfyUI[0m2025-01-09T23:36:19.992068 -
2025-01-09T23:36:20.093575 - Torch version: 2.4.1+cu1242025-01-09T23:36:20.093575 -
2025-01-09T23:36:20.401042 - no module 'xformers'. Processing without...2025-01-09T23:36:20.406042 -
2025-01-09T23:36:20.410042 - no module 'xformers'. Processing without...2025-01-09T23:36:20.412042 -
2025-01-09T23:36:20.503549 - (pysssss:WD14Tagger) [DEBUG] Available ORT providers: TensorrtExecutionProvider, CUDAExecutionProvider, CPUExecutionProvider2025-01-09T23:36:20.503549 -
2025-01-09T23:36:20.503549 - (pysssss:WD14Tagger) [DEBUG] Using ORT providers: CUDAExecutionProvider, CPUExecutionProvider2025-01-09T23:36:20.503549 -
2025-01-09T23:36:20.536055 - ------------------------------------------2025-01-09T23:36:20.536055 -
2025-01-09T23:36:20.536055 - Comfyroll Studio v1.76 : 2025-01-09T23:36:20.536055 - 175 Nodes Loaded2025-01-09T23:36:20.537056 -
2025-01-09T23:36:20.537056 - ------------------------------------------2025-01-09T23:36:20.537056 -
2025-01-09T23:36:20.537056 - ** For changes, please see patch notes at https://github.com/Suzie1/ComfyUI_Comfyroll_CustomNodes/blob/main/Patch_Notes.md2025-01-09T23:36:20.537056 -
2025-01-09T23:36:20.537056 - ** For help, please see the wiki at https://github.com/Suzie1/ComfyUI_Comfyroll_CustomNodes/wiki2025-01-09T23:36:20.537056 -
2025-01-09T23:36:20.537056 - ------------------------------------------2025-01-09T23:36:20.537056 -
2025-01-09T23:36:20.604057 - Traceback (most recent call last):
File "C:\budleAI ver3\ComfyUI_windows_portable\python_embeded\Lib\site-packages\transformers\utils\import_utils.py", line 1778, in _get_module
return importlib.import_module("." + module_name, self.__name__)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "importlib\__init__.py", line 126, in import_module
File "", line 1204, in _gcd_import
File "", line 1176, in _find_and_load
File "", line 1147, in _find_and_load_unlocked
File "", line 690, in _load_unlocked
File "", line 940, in exec_module
File "", line 241, in _call_with_frames_removed
File "C:\budleAI ver3\ComfyUI_windows_portable\python_embeded\Lib\site-packages\transformers\pipelines\__init__.py", line 64, in
from .document_question_answering import DocumentQuestionAnsweringPipeline
File "C:\budleAI ver3\ComfyUI_windows_portable\python_embeded\Lib\site-packages\transformers\pipelines\document_question_answering.py", line 29, in
from .question_answering import select_starts_ends
File "C:\budleAI ver3\ComfyUI_windows_portable\python_embeded\Lib\site-packages\transformers\pipelines\question_answering.py", line 9, in
from ..data import SquadExample, SquadFeatures, squad_convert_examples_to_features
File "C:\budleAI ver3\ComfyUI_windows_portable\python_embeded\Lib\site-packages\transformers\data\__init__.py", line 27, in
from .metrics import glue_compute_metrics, xnli_compute_metrics
File "C:\budleAI ver3\ComfyUI_windows_portable\python_embeded\Lib\site-packages\transformers\data\metrics\__init__.py", line 20, in
from sklearn.metrics import f1_score, matthews_corrcoef
File "C:\budleAI ver3\ComfyUI_windows_portable\python_embeded\Lib\site-packages\sklearn\__init__.py", line 80, in
from . import (
File "C:\budleAI ver3\ComfyUI_windows_portable\python_embeded\Lib\site-packages\sklearn\_distributor_init.py", line 21, in
WinDLL(op.abspath(vcomp140_dll_filename))
File "ctypes\__init__.py", line 376, in __init__
FileNotFoundError: Could not find module 'C:\budleAI ver3\ComfyUI_windows_portable\python_embeded\Lib\site-packages\sklearn\.libs\vcomp140.dll' (or one of its dependencies). Try using the full path with constructor syntax.
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "C:\budleAI ver3\ComfyUI_windows_portable\ComfyUI\nodes.py", line 2035, in load_custom_node
module_spec.loader.exec_module(module)
File "", line 940, in exec_module
File "", line 241, in _call_with_frames_removed
File "C:\budleAI ver3\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI_LayerStyle\__init__.py", line 35, in
imported_module = importlib.import_module(".py.{}".format(name), __name__)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "importlib\__init__.py", line 126, in import_module
File "", line 1204, in _gcd_import
File "", line 1176, in _find_and_load
File "", line 1147, in _find_and_load_unlocked
File "", line 690, in _load_unlocked
File "", line 940, in exec_module
File "", line 241, in _call_with_frames_removed
File "C:\budleAI ver3\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI_LayerStyle\py\vqa_prompt.py", line 5, in
from transformers import pipeline
File "", line 1229, in _handle_fromlist
File "C:\budleAI ver3\ComfyUI_windows_portable\python_embeded\Lib\site-packages\transformers\utils\import_utils.py", line 1766, in __getattr__
module = self._get_module(self._class_to_module[name])
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\budleAI ver3\ComfyUI_windows_portable\python_embeded\Lib\site-packages\transformers\utils\import_utils.py", line 1780, in _get_module
raise RuntimeError(
RuntimeError: Failed to import transformers.pipelines because of the following error (look up to see its traceback):
Could not find module 'C:\budleAI ver3\ComfyUI_windows_portable\python_embeded\Lib\site-packages\sklearn\.libs\vcomp140.dll' (or one of its dependencies). Try using the full path with constructor syntax.
2025-01-09T23:36:20.608057 - Cannot import C:\budleAI ver3\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI_LayerStyle module for custom nodes: Failed to import transformers.pipelines because of the following error (look up to see its traceback):
Could not find module 'C:\budleAI ver3\ComfyUI_windows_portable\python_embeded\Lib\site-packages\sklearn\.libs\vcomp140.dll' (or one of its dependencies). Try using the full path with constructor syntax.
2025-01-09T23:36:20.718071 - [comfy_mtb] | INFO -> loaded 2025-01-09T23:36:20.718071 - 862025-01-09T23:36:20.718071 - nodes successfuly2025-01-09T23:36:20.718071 -
2025-01-09T23:36:20.719071 - [comfy_mtb] | INFO -> Some nodes (2) could not be loaded. This can be ignored, but go to http://127.0.0.1:8188/mtb if you want more information.2025-01-09T23:36:20.719071 -
2025-01-09T23:36:20.729071 - Traceback (most recent call last):
File "C:\budleAI ver3\ComfyUI_windows_portable\ComfyUI\nodes.py", line 2035, in load_custom_node
module_spec.loader.exec_module(module)
File "", line 940, in exec_module
File "", line 241, in _call_with_frames_removed
File "C:\budleAI ver3\ComfyUI_windows_portable\ComfyUI\custom_nodes\eden_comfy_pipelines\__init__.py", line 6, in
from img_utils.img_nodes import *
File "C:\budleAI ver3\ComfyUI_windows_portable\ComfyUI\custom_nodes\eden_comfy_pipelines\img_utils\img_nodes.py", line 297, in
from sklearn.cluster import KMeans
File "C:\budleAI ver3\ComfyUI_windows_portable\python_embeded\Lib\site-packages\sklearn\__init__.py", line 80, in
from . import (
File "C:\budleAI ver3\ComfyUI_windows_portable\python_embeded\Lib\site-packages\sklearn\_distributor_init.py", line 21, in
WinDLL(op.abspath(vcomp140_dll_filename))
File "ctypes\__init__.py", line 376, in __init__
FileNotFoundError: Could not find module 'C:\budleAI ver3\ComfyUI_windows_portable\python_embeded\Lib\site-packages\sklearn\.libs\vcomp140.dll' (or one of its dependencies). Try using the full path with constructor syntax.
2025-01-09T23:36:20.729071 - Cannot import C:\budleAI ver3\ComfyUI_windows_portable\ComfyUI\custom_nodes\eden_comfy_pipelines module for custom nodes: Could not find module 'C:\budleAI ver3\ComfyUI_windows_portable\python_embeded\Lib\site-packages\sklearn\.libs\vcomp140.dll' (or one of its dependencies). Try using the full path with constructor syntax.
2025-01-09T23:36:20.745071 -
2025-01-09T23:36:20.745071 - [rgthree-comfy] Loaded 42 epic nodes. 🎉2025-01-09T23:36:20.745071 -
2025-01-09T23:36:20.745071 -
2025-01-09T23:36:21.226160 - WAS Node Suite: 2025-01-09T23:36:21.226160 - OpenCV Python FFMPEG support is enabled2025-01-09T23:36:21.227160 -
2025-01-09T23:36:21.227160 - WAS Node Suite 2025-01-09T23:36:21.227160 - Warning: 2025-01-09T23:36:21.227160 - `ffmpeg_bin_path` is not set in `C:\budleAI ver3\ComfyUI_windows_portable\ComfyUI\custom_nodes\was-node-suite-comfyui\was_suite_config.json` config file. Will attempt to use system ffmpeg binaries if available.2025-01-09T23:36:21.227160 -
2025-01-09T23:36:21.700578 - WAS Node Suite: 2025-01-09T23:36:21.700578 - Finished.2025-01-09T23:36:21.700578 - 2025-01-09T23:36:21.700578 - Loaded2025-01-09T23:36:21.700578 - 2025-01-09T23:36:21.700578 - 2182025-01-09T23:36:21.700578 - 2025-01-09T23:36:21.700578 - nodes successfully.2025-01-09T23:36:21.701579 -
2025-01-09T23:36:21.701579 -
2025-01-09T23:36:21.701579 - "Art is the journey of a free soul."2025-01-09T23:36:21.701579 - - Alev Oguz2025-01-09T23:36:21.701579 -
2025-01-09T23:36:21.701579 -
2025-01-09T23:36:21.717085 -
Import times for custom nodes:
2025-01-09T23:36:21.717085 - 0.0 seconds: C:\budleAI ver3\ComfyUI_windows_portable\ComfyUI\custom_nodes\value_cycle.py
2025-01-09T23:36:21.717085 - 0.0 seconds: C:\budleAI ver3\ComfyUI_windows_portable\ComfyUI\custom_nodes\soy_test.py
2025-01-09T23:36:21.717085 - 0.0 seconds: C:\budleAI ver3\ComfyUI_windows_portable\ComfyUI\custom_nodes\LoRA_Loader_Batch_List.py
2025-01-09T23:36:21.717085 - 0.0 seconds: C:\budleAI ver3\ComfyUI_windows_portable\ComfyUI\custom_nodes\soylab_patch_type_mode.py
2025-01-09T23:36:21.717085 - 0.0 seconds: C:\budleAI ver3\ComfyUI_windows_portable\ComfyUI\custom_nodes\LoRA_List_Counter.py
2025-01-09T23:36:21.718085 - 0.0 seconds: C:\budleAI ver3\ComfyUI_windows_portable\ComfyUI\custom_nodes\websocket_image_save.py
2025-01-09T23:36:21.718085 - 0.0 seconds: C:\budleAI ver3\ComfyUI_windows_portable\ComfyUI\custom_nodes\sdxl_prompt_styler
2025-01-09T23:36:21.718085 - 0.0 seconds: C:\budleAI ver3\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI_IPAdapter_plus
2025-01-09T23:36:21.718085 - 0.0 seconds: C:\budleAI ver3\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI_AdvancedRefluxControl
2025-01-09T23:36:21.718085 - 0.0 seconds: C:\budleAI ver3\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-openpose-editor
2025-01-09T23:36:21.718085 - 0.0 seconds: C:\budleAI ver3\ComfyUI_windows_portable\ComfyUI\custom_nodes\cg-use-everywhere
2025-01-09T23:36:21.718085 - 0.0 seconds: C:\budleAI ver3\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfyui-copilot
2025-01-09T23:36:21.718085 - 0.0 seconds: C:\budleAI ver3\ComfyUI_windows_portable\ComfyUI\custom_nodes\masquerade-nodes-comfyui
2025-01-09T23:36:21.718085 - 0.0 seconds: C:\budleAI ver3\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-VideoHelperSuite
2025-01-09T23:36:21.718085 - 0.0 seconds: C:\budleAI ver3\ComfyUI_windows_portable\ComfyUI\custom_nodes\Comfyui-In-Context-Lora-Utils
2025-01-09T23:36:21.718085 - 0.0 seconds: C:\budleAI ver3\ComfyUI_windows_portable\ComfyUI\custom_nodes\wlsh_nodes
2025-01-09T23:36:21.718085 - 0.0 seconds: C:\budleAI ver3\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyLiterals
2025-01-09T23:36:21.718085 - 0.0 seconds: C:\budleAI ver3\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI_InstantID
2025-01-09T23:36:21.719085 - 0.0 seconds: C:\budleAI ver3\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-WD14-Tagger
2025-01-09T23:36:21.719085 - 0.0 seconds: C:\budleAI ver3\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-AutomaticCFG
2025-01-09T23:36:21.719085 - 0.0 seconds: C:\budleAI ver3\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfyui_controlnet_aux
2025-01-09T23:36:21.719085 - 0.0 seconds: C:\budleAI ver3\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfyui-inpaint-nodes
2025-01-09T23:36:21.719085 - 0.0 seconds: C:\budleAI ver3\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-Video-Matting
2025-01-09T23:36:21.719085 - 0.0 seconds: C:\budleAI ver3\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfyui-portrait-master
2025-01-09T23:36:21.719085 - 0.0 seconds (IMPORT FAILED): C:\budleAI ver3\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-IDM-VTON
2025-01-09T23:36:21.719085 - 0.0 seconds: C:\budleAI ver3\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-Impact-Pack
2025-01-09T23:36:21.719085 - 0.0 seconds: C:\budleAI ver3\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-Custom-Scripts
2025-01-09T23:36:21.719085 - 0.0 seconds: C:\budleAI ver3\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfy-image-saver
2025-01-09T23:36:21.719085 - 0.0 seconds: C:\budleAI ver3\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyMath
2025-01-09T23:36:21.719085 - 0.0 seconds: C:\budleAI ver3\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI_essentials
2025-01-09T23:36:21.719085 - 0.0 seconds: C:\budleAI ver3\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI_UltimateSDUpscale
2025-01-09T23:36:21.719085 - 0.0 seconds: C:\budleAI ver3\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-KJNodes
2025-01-09T23:36:21.719085 - 0.0 seconds: C:\budleAI ver3\ComfyUI_windows_portable\ComfyUI\custom_nodes\x-flux-comfyui
2025-01-09T23:36:21.719085 - 0.0 seconds (IMPORT FAILED): C:\budleAI ver3\ComfyUI_windows_portable\ComfyUI\custom_nodes\eden_comfy_pipelines
2025-01-09T23:36:21.719085 - 0.0 seconds: C:\budleAI ver3\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-GGUF
2025-01-09T23:36:21.720085 - 0.0 seconds: C:\budleAI ver3\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-Advanced-ControlNet
2025-01-09T23:36:21.720085 - 0.0 seconds: C:\budleAI ver3\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-Florence2
2025-01-09T23:36:21.720085 - 0.0 seconds: C:\budleAI ver3\ComfyUI_windows_portable\ComfyUI\custom_nodes\rgthree-comfy
2025-01-09T23:36:21.720085 - 0.0 seconds: C:\budleAI ver3\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-IC-Light
2025-01-09T23:36:21.720085 - 0.0 seconds: C:\budleAI ver3\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-AnimateDiff-Evolved
2025-01-09T23:36:21.720085 - 0.0 seconds: C:\budleAI ver3\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-Inspire-Pack
2025-01-09T23:36:21.720085 - 0.0 seconds: C:\budleAI ver3\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfyui-prompt-control
2025-01-09T23:36:21.720085 - 0.0 seconds: C:\budleAI ver3\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI_Comfyroll_CustomNodes
2025-01-09T23:36:21.720085 - 0.0 seconds (IMPORT FAILED): C:\budleAI ver3\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-FluxTrainer
2025-01-09T23:36:21.720085 - 0.0 seconds: C:\budleAI ver3\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfy_mtb
2025-01-09T23:36:21.720085 - 0.1 seconds (IMPORT FAILED): C:\budleAI ver3\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI_LayerStyle
2025-01-09T23:36:21.720085 - 0.1 seconds: C:\budleAI ver3\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfyui_segment_anything
2025-01-09T23:36:21.720085 - 0.1 seconds: C:\budleAI ver3\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfyui-tensorops
2025-01-09T23:36:21.721085 - 0.1 seconds: C:\budleAI ver3\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfyui-reactor-node
2025-01-09T23:36:21.721085 - 0.2 seconds: C:\budleAI ver3\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-Crystools
2025-01-09T23:36:21.721085 - 0.3 seconds: C:\budleAI ver3\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-AdvancedLivePortrait
2025-01-09T23:36:21.721085 - 0.3 seconds: C:\budleAI ver3\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-Manager
2025-01-09T23:36:21.721085 - 0.3 seconds: C:\budleAI ver3\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-SUPIR
2025-01-09T23:36:21.721085 - 0.4 seconds: C:\budleAI ver3\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-Easy-Use
2025-01-09T23:36:21.721085 - 0.4 seconds: C:\budleAI ver3\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-Image-Filters
2025-01-09T23:36:21.721085 - 0.4 seconds: C:\budleAI ver3\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-PuLID-Flux-Enhanced
2025-01-09T23:36:21.721085 - 0.4 seconds: C:\budleAI ver3\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfyui-art-venture
2025-01-09T23:36:21.721085 - 1.0 seconds: C:\budleAI ver3\ComfyUI_windows_portable\ComfyUI\custom_nodes\was-node-suite-comfyui
2025-01-09T23:36:21.721085 - 1.0 seconds: C:\budleAI ver3\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfyui-mixlab-nodes
2025-01-09T23:36:21.721085 -
2025-01-09T23:36:21.730085 - Starting server
2025-01-09T23:36:21.731085 - To see the GUI go to: http://127.0.0.1:8188
2025-01-09T23:36:22.386658 - C:\budleAI ver3\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfyui-mixlab-nodes\webApp\lib/photoswipe-lightbox.esm.min.js2025-01-09T23:36:22.386658 -
2025-01-09T23:36:22.398658 - FETCH DATA from: C:\budleAI ver3\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-Manager\extension-node-map.json2025-01-09T23:36:22.402659 - [DONE]2025-01-09T23:36:22.402659 -
2025-01-09T23:36:22.408660 - C:\budleAI ver3\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfyui-mixlab-nodes\webApp\lib/pickr.min.js2025-01-09T23:36:22.408660 -
2025-01-09T23:36:22.410659 - C:\budleAI ver3\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfyui-mixlab-nodes\webApp\lib/photoswipe.min.css2025-01-09T23:36:22.410659 -
2025-01-09T23:36:22.428167 - C:\budleAI ver3\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfyui-mixlab-nodes\webApp\lib/classic.min.css2025-01-09T23:36:22.429167 -
2025-01-09T23:36:22.429167 - C:\budleAI ver3\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfyui-mixlab-nodes\webApp\lib/model-viewer.min.js2025-01-09T23:36:22.429167 -
2025-01-09T23:36:22.433167 - C:\budleAI ver3\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfyui-mixlab-nodes\webApp\lib/juxtapose.min.js2025-01-09T23:36:22.433167 -
2025-01-09T23:36:22.434167 - C:\budleAI ver3\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfyui-mixlab-nodes\webApp\lib/juxtapose.css2025-01-09T23:36:22.434167 -
2025-01-09T23:36:23.419260 - []2025-01-09T23:36:23.420304 -
2025-01-09T23:36:23.420304 - []2025-01-09T23:36:23.420304 -
2025-01-09T23:36:28.291124 - got prompt
2025-01-09T23:36:28.456496 - Requested to load FluxClipModel_
2025-01-09T23:36:30.040442 - loaded completely 9.5367431640625e+25 4778.66552734375 True
2025-01-09T23:36:30.661133 - Using pytorch attention in VAE
2025-01-09T23:36:30.662133 - Using pytorch attention in VAE
2025-01-09T23:36:30.786640 -
ggml_sd_loader:2025-01-09T23:36:30.786640 -
2025-01-09T23:36:30.786640 - 1 4762025-01-09T23:36:30.786640 -
2025-01-09T23:36:30.786640 - 8 3042025-01-09T23:36:30.786640 -
2025-01-09T23:36:30.954387 - model weight dtype torch.bfloat16, manual cast: None
2025-01-09T23:36:30.955388 - model_type FLUX
2025-01-09T23:36:31.389106 - Applied providers: ['CPUExecutionProvider'], with options: {'CPUExecutionProvider': {}}2025-01-09T23:36:31.390106 -
2025-01-09T23:36:31.448507 - find model:2025-01-09T23:36:31.448507 - 2025-01-09T23:36:31.448507 - C:\budleAI ver3\ComfyUI_windows_portable\ComfyUI\models\insightface\models\antelopev2\1k3d68.onnx2025-01-09T23:36:31.448507 - 2025-01-09T23:36:31.448507 - landmark_3d_682025-01-09T23:36:31.449507 - 2025-01-09T23:36:31.449507 - ['None', 3, 192, 192]2025-01-09T23:36:31.449507 - 2025-01-09T23:36:31.449507 - 0.02025-01-09T23:36:31.449507 - 2025-01-09T23:36:31.449507 - 1.02025-01-09T23:36:31.449507 -
2025-01-09T23:36:31.465507 - Applied providers: ['CPUExecutionProvider'], with options: {'CPUExecutionProvider': {}}2025-01-09T23:36:31.469507 -
2025-01-09T23:36:31.472507 - find model:2025-01-09T23:36:31.474507 - 2025-01-09T23:36:31.474507 - C:\budleAI ver3\ComfyUI_windows_portable\ComfyUI\models\insightface\models\antelopev2\2d106det.onnx2025-01-09T23:36:31.474507 - 2025-01-09T23:36:31.474507 - landmark_2d_1062025-01-09T23:36:31.475507 - 2025-01-09T23:36:31.475507 - ['None', 3, 192, 192]2025-01-09T23:36:31.475507 - 2025-01-09T23:36:31.475507 - 0.02025-01-09T23:36:31.475507 - 2025-01-09T23:36:31.475507 - 1.02025-01-09T23:36:31.475507 -
2025-01-09T23:36:31.486507 - Applied providers: ['CPUExecutionProvider'], with options: {'CPUExecutionProvider': {}}2025-01-09T23:36:31.486507 -
2025-01-09T23:36:31.488507 - find model:2025-01-09T23:36:31.489507 - 2025-01-09T23:36:31.490507 - C:\budleAI ver3\ComfyUI_windows_portable\ComfyUI\models\insightface\models\antelopev2\genderage.onnx2025-01-09T23:36:31.492507 - 2025-01-09T23:36:31.493507 - genderage2025-01-09T23:36:31.497507 - 2025-01-09T23:36:31.498507 - ['None', 3, 96, 96]2025-01-09T23:36:31.499507 - 2025-01-09T23:36:31.500507 - 0.02025-01-09T23:36:31.501508 - 2025-01-09T23:36:31.501508 - 1.02025-01-09T23:36:31.501508 -
2025-01-09T23:36:31.831004 - Applied providers: ['CPUExecutionProvider'], with options: {'CPUExecutionProvider': {}}2025-01-09T23:36:31.832004 -
2025-01-09T23:36:31.936047 - find model:2025-01-09T23:36:31.937047 - 2025-01-09T23:36:31.937047 - C:\budleAI ver3\ComfyUI_windows_portable\ComfyUI\models\insightface\models\antelopev2\glintr100.onnx2025-01-09T23:36:31.937047 - 2025-01-09T23:36:31.937047 - recognition2025-01-09T23:36:31.937047 - 2025-01-09T23:36:31.937047 - ['None', 3, 112, 112]2025-01-09T23:36:31.937047 - 2025-01-09T23:36:31.937047 - 127.52025-01-09T23:36:31.937047 - 2025-01-09T23:36:31.937047 - 127.52025-01-09T23:36:31.937047 -
2025-01-09T23:36:31.975047 - Applied providers: ['CPUExecutionProvider'], with options: {'CPUExecutionProvider': {}}2025-01-09T23:36:31.975047 -
2025-01-09T23:36:31.975047 - find model:2025-01-09T23:36:31.975047 - 2025-01-09T23:36:31.975047 - C:\budleAI ver3\ComfyUI_windows_portable\ComfyUI\models\insightface\models\antelopev2\scrfd_10g_bnkps.onnx2025-01-09T23:36:31.975047 - 2025-01-09T23:36:31.975047 - detection2025-01-09T23:36:31.975047 - 2025-01-09T23:36:31.976047 - [1, 3, '?', '?']2025-01-09T23:36:31.976047 - 2025-01-09T23:36:31.976047 - 127.52025-01-09T23:36:31.976047 - 2025-01-09T23:36:31.976047 - 128.02025-01-09T23:36:31.976047 -
2025-01-09T23:36:31.976047 - set det-size:2025-01-09T23:36:31.976047 - 2025-01-09T23:36:31.976047 - (640, 640)2025-01-09T23:36:31.976047 -
2025-01-09T23:36:31.977048 - Loaded EVA02-CLIP-L-14-336 model config.
2025-01-09T23:36:31.991047 - Shape of rope freq: torch.Size([576, 64])
2025-01-09T23:36:34.461305 - Loading pretrained EVA02-CLIP-L-14-336 weights (eva_clip).
2025-01-09T23:36:34.766541 - incompatible_keys.missing_keys: ['visual.rope.freqs_cos', 'visual.rope.freqs_sin', 'visual.blocks.0.attn.rope.freqs_cos', 'visual.blocks.0.attn.rope.freqs_sin', 'visual.blocks.1.attn.rope.freqs_cos', 'visual.blocks.1.attn.rope.freqs_sin', 'visual.blocks.2.attn.rope.freqs_cos', 'visual.blocks.2.attn.rope.freqs_sin', 'visual.blocks.3.attn.rope.freqs_cos', 'visual.blocks.3.attn.rope.freqs_sin', 'visual.blocks.4.attn.rope.freqs_cos', 'visual.blocks.4.attn.rope.freqs_sin', 'visual.blocks.5.attn.rope.freqs_cos', 'visual.blocks.5.attn.rope.freqs_sin', 'visual.blocks.6.attn.rope.freqs_cos', 'visual.blocks.6.attn.rope.freqs_sin', 'visual.blocks.7.attn.rope.freqs_cos', 'visual.blocks.7.attn.rope.freqs_sin', 'visual.blocks.8.attn.rope.freqs_cos', 'visual.blocks.8.attn.rope.freqs_sin', 'visual.blocks.9.attn.rope.freqs_cos', 'visual.blocks.9.attn.rope.freqs_sin', 'visual.blocks.10.attn.rope.freqs_cos', 'visual.blocks.10.attn.rope.freqs_sin', 'visual.blocks.11.attn.rope.freqs_cos', 'visual.blocks.11.attn.rope.freqs_sin', 'visual.blocks.12.attn.rope.freqs_cos', 'visual.blocks.12.attn.rope.freqs_sin', 'visual.blocks.13.attn.rope.freqs_cos', 'visual.blocks.13.attn.rope.freqs_sin', 'visual.blocks.14.attn.rope.freqs_cos', 'visual.blocks.14.attn.rope.freqs_sin', 'visual.blocks.15.attn.rope.freqs_cos', 'visual.blocks.15.attn.rope.freqs_sin', 'visual.blocks.16.attn.rope.freqs_cos', 'visual.blocks.16.attn.rope.freqs_sin', 'visual.blocks.17.attn.rope.freqs_cos', 'visual.blocks.17.attn.rope.freqs_sin', 'visual.blocks.18.attn.rope.freqs_cos', 'visual.blocks.18.attn.rope.freqs_sin', 'visual.blocks.19.attn.rope.freqs_cos', 'visual.blocks.19.attn.rope.freqs_sin', 'visual.blocks.20.attn.rope.freqs_cos', 'visual.blocks.20.attn.rope.freqs_sin', 'visual.blocks.21.attn.rope.freqs_cos', 'visual.blocks.21.attn.rope.freqs_sin', 'visual.blocks.22.attn.rope.freqs_cos', 'visual.blocks.22.attn.rope.freqs_sin', 'visual.blocks.23.attn.rope.freqs_cos', 'visual.blocks.23.attn.rope.freqs_sin']
2025-01-09T23:36:36.156370 - Loading PuLID-Flux model.
2025-01-09T23:36:38.469214 - Requested to load AutoencodingEngine
2025-01-09T23:36:39.475109 - 0 models unloaded.
2025-01-09T23:36:39.503110 - loaded completely 9.5367431640625e+25 159.87335777282715 True
2025-01-09T23:36:40.806254 - Requested to load Flux
2025-01-09T23:36:42.037212 - loaded partially 4713.253478302002 4713.2532958984375 0
2025-01-09T23:36:42.048211 - Attempting to release mmap (235)2025-01-09T23:36:42.048800 -
2025-01-09T23:36:46.222587 -
0%| | 0/25 [00:00
Contributor guide
Assessment
This issue has not been assessed yet.