Comfy-Org / Comfy-Org/ComfyUI

forward() missing 1 required positional argument: 'y'

Open
#5,927 1 comment 0 reactions 0 assignees View on GitHub
Potential Bug
Dominant language
Python
Stars
133k
Forks
15.7k
Avg merge
1d 7h
Merged PRs (30d)
158

Description

### Expected Behavior

怎么解决

### Actual Behavior

### Steps to Reproduce

### Debug Logs

```powershell
# ComfyUI Error Report
## Error Details
- **Node ID:** 63
- **Node Type:** KSamplerAdvanced //Inspire
- **Exception Type:** TypeError
- **Exception Message:** forward() missing 1 required positional argument: 'y'
## Stack Trace

File "/Volumes/mac/ComfyUI/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 "/Volumes/mac/ComfyUI/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 "/Volumes/mac/ComfyUI/ComfyUI_windows_portable/ComfyUI/execution.py", line 170, in _map_node_over_list
process_inputs(input_dict, i)

File "/Volumes/mac/ComfyUI/ComfyUI_windows_portable/ComfyUI/execution.py", line 159, in process_inputs
results.append(getattr(obj, func)(**inputs))

File "/Volumes/mac/ComfyUI/ComfyUI_windows_portable/ComfyUI/custom_nodes/ComfyUI-Inspire-Pack/inspire/a1111_compat.py", line 195, in doit
return (self.sample(*args, **kwargs)[0],)

File "/Volumes/mac/ComfyUI/ComfyUI_windows_portable/ComfyUI/custom_nodes/ComfyUI-Inspire-Pack/inspire/a1111_compat.py", line 188, in sample
return inspire_ksampler(model, noise_seed, steps, cfg, sampler_name, scheduler, positive, negative, latent_image,

File "/Volumes/mac/ComfyUI/ComfyUI_windows_portable/ComfyUI/custom_nodes/ComfyUI-Inspire-Pack/inspire/a1111_compat.py", line 96, in inspire_ksampler
raise e

File "/Volumes/mac/ComfyUI/ComfyUI_windows_portable/ComfyUI/custom_nodes/ComfyUI-Inspire-Pack/inspire/a1111_compat.py", line 84, in inspire_ksampler
samples = common.impact_sampling(

File "/Volumes/mac/ComfyUI/ComfyUI_windows_portable/ComfyUI/custom_nodes/ComfyUI-Inspire-Pack/inspire/libs/common.py", line 14, in impact_sampling
return nodes.NODE_CLASS_MAPPINGS['RegionalSampler'].separated_sample(*args, **kwargs)

File "/Volumes/mac/ComfyUI/ComfyUI_windows_portable/ComfyUI/custom_nodes/ComfyUI-Impact-Pack/modules/impact/special_samplers.py", line 312, in separated_sample
return separated_sample(*args, **kwargs)

File "/Volumes/mac/ComfyUI/ComfyUI_windows_portable/ComfyUI/custom_nodes/ComfyUI-Impact-Pack/modules/impact/impact_sampling.py", line 216, in separated_sample
res = sample_with_custom_noise(model, add_noise, seed, cfg, positive, negative, impact_sampler, sigmas, latent_image, noise=noise, callback=callback)

File "/Volumes/mac/ComfyUI/ComfyUI_windows_portable/ComfyUI/custom_nodes/ComfyUI-Impact-Pack/modules/impact/impact_sampling.py", line 160, in sample_with_custom_noise
samples = comfy.sample.sample_custom(model, noise, cfg, sampler, sigmas, positive, negative, latent_image,

File "/Volumes/mac/ComfyUI/ComfyUI_windows_portable/ComfyUI/comfy/sample.py", line 48, in sample_custom
samples = comfy.samplers.sample(model, noise, positive, negative, cfg, model.load_device, sampler, sigmas, model_options=model.model_options, latent_image=latent_image, denoise_mask=noise_mask, callback=callback, disable_pbar=disable_pbar, seed=seed)

File "/Volumes/mac/ComfyUI/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 "/Volumes/mac/ComfyUI/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 "/Volumes/mac/ComfyUI/ComfyUI_windows_portable/ComfyUI/comfy/patcher_extension.py", line 110, in execute
return self.original(*args, **kwargs)

File "/Volumes/mac/ComfyUI/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 "/Volumes/mac/ComfyUI/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 "/Volumes/mac/ComfyUI/ComfyUI_windows_portable/ComfyUI/comfy/patcher_extension.py", line 110, in execute
return self.original(*args, **kwargs)

File "/Volumes/mac/ComfyUI/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 "/Users/mac/Library/Python/3.9/lib/python/site-packages/torch/utils/_contextlib.py", line 115, in decorate_context
return func(*args, **kwargs)

File "/Volumes/mac/ComfyUI/ComfyUI_windows_portable/ComfyUI/comfy/k_diffusion/sampling.py", line 155, in sample_euler
denoised = model(x, sigma_hat * s_in, **extra_args)

File "/Volumes/mac/ComfyUI/ComfyUI_windows_portable/ComfyUI/comfy/samplers.py", line 384, in __call__
out = self.inner_model(x, sigma, model_options=model_options, seed=seed)

File "/Volumes/mac/ComfyUI/ComfyUI_windows_portable/ComfyUI/comfy/samplers.py", line 839, in __call__
return self.predict_noise(*args, **kwargs)

File "/Volumes/mac/ComfyUI/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 "/Volumes/mac/ComfyUI/ComfyUI_windows_portable/ComfyUI/comfy/samplers.py", line 364, in sampling_function
out = calc_cond_batch(model, conds, x, timestep, model_options)

File "/Volumes/mac/ComfyUI/ComfyUI_windows_portable/ComfyUI/comfy/samplers.py", line 200, in calc_cond_batch
return executor.execute(model, conds, x_in, timestep, model_options)

File "/Volumes/mac/ComfyUI/ComfyUI_windows_portable/ComfyUI/comfy/patcher_extension.py", line 110, in execute
return self.original(*args, **kwargs)

File "/Volumes/mac/ComfyUI/ComfyUI_windows_portable/ComfyUI/comfy/samplers.py", line 308, in _calc_cond_batch
c['control'] = control.get_control(input_x, timestep_, c, len(cond_or_uncond), transformer_options)

File "/Volumes/mac/ComfyUI/ComfyUI_windows_portable/ComfyUI/custom_nodes/ComfyUI-Advanced-ControlNet/adv_control/utils.py", line 681, in get_control_inject
return self.get_control_advanced(x_noisy, t, cond, batched_number, transformer_options)

File "/Volumes/mac/ComfyUI/ComfyUI_windows_portable/ComfyUI/custom_nodes/ComfyUI-Advanced-ControlNet/adv_control/control.py", line 46, in get_control_advanced
return self.sliding_get_control(x_noisy, t, cond, batched_number, transformer_options)

File "/Volumes/mac/ComfyUI/ComfyUI_windows_portable/ComfyUI/custom_nodes/ComfyUI-Advanced-ControlNet/adv_control/control.py", line 117, in sliding_get_control
control = self.control_model(x=x_noisy.to(dtype), hint=self.cond_hint, timesteps=timestep.to(dtype), context=context.to(dtype), **extra)

File "/Users/mac/Library/Python/3.9/lib/python/site-packages/torch/nn/modules/module.py", line 1532, in _wrapped_call_impl
return self._call_impl(*args, **kwargs)

File "/Users/mac/Library/Python/3.9/lib/python/site-packages/torch/nn/modules/module.py", line 1541, in _call_impl
return forward_call(*args, **kwargs)

```
## System Information
- **ComfyUI Version:** v0.3.6-14-g9a616b8
- **Arguments:** main.py
- **OS:** posix
- **Python Version:** 3.9.6 (default, Feb 3 2024, 15:58:27)
[Clang 15.0.0 (clang-1500.3.9.4)]
- **Embedded Python:** false
- **PyTorch Version:** 2.3.1
## Devices

- **Name:** mps
- **Type:** mps
- **VRAM Total:** 17179869184
- **VRAM Free:** 5417680896
- **Torch VRAM Total:** 17179869184
- **Torch VRAM Free:** 5417680896

## Logs
```
2024-12-05T17:01:14.362806 - [START] Security scan2024-12-05T17:01:14.362814 -
2024-12-05T17:01:14.690342 - [DONE] Security scan2024-12-05T17:01:14.690389 -
2024-12-05T17:01:14.734678 - ## ComfyUI-Manager: installing dependencies done.2024-12-05T17:01:14.734709 -
2024-12-05T17:01:14.734723 - ** ComfyUI startup time:2024-12-05T17:01:14.734737 - 2024-12-05T17:01:14.734749 - 2024-12-05 17:01:14.7347142024-12-05T17:01:14.734759 -
2024-12-05T17:01:14.734784 - ** Platform:2024-12-05T17:01:14.734794 - 2024-12-05T17:01:14.734806 - Darwin2024-12-05T17:01:14.734817 -
2024-12-05T17:01:14.734826 - ** Python version:2024-12-05T17:01:14.734835 - 2024-12-05T17:01:14.734843 - 3.9.6 (default, Feb 3 2024, 15:58:27)
[Clang 15.0.0 (clang-1500.3.9.4)]2024-12-05T17:01:14.734853 -
2024-12-05T17:01:14.734862 - ** Python executable:2024-12-05T17:01:14.734870 - 2024-12-05T17:01:14.734878 - /Library/Developer/CommandLineTools/usr/bin/python32024-12-05T17:01:14.734889 -
2024-12-05T17:01:14.734900 - ** ComfyUI Path:2024-12-05T17:01:14.734911 - 2024-12-05T17:01:14.734923 - /Volumes/mac/ComfyUI/ComfyUI_windows_portable/ComfyUI2024-12-05T17:01:14.734932 -
2024-12-05T17:01:14.735204 - ** Log path:2024-12-05T17:01:14.735224 - 2024-12-05T17:01:14.735237 - /Volumes/mac/ComfyUI/ComfyUI_windows_portable/ComfyUI/comfyui.log2024-12-05T17:01:14.735250 -
2024-12-05T17:01:15.111013 -
Prestartup times for custom nodes:2024-12-05T17:01:15.111047 -
2024-12-05T17:01:15.111069 - 0.8 seconds:2024-12-05T17:01:15.111087 - 2024-12-05T17:01:15.111104 - /Volumes/mac/ComfyUI/ComfyUI_windows_portable/ComfyUI/custom_nodes/ComfyUI-Manager2024-12-05T17:01:15.111113 -
2024-12-05T17:01:15.111122 -
2024-12-05T17:01:15.629338 - Total VRAM 16384 MB, total RAM 16384 MB
2024-12-05T17:01:15.629412 - pytorch version: 2.3.1
2024-12-05T17:01:15.629532 - Set vram state to: SHARED
2024-12-05T17:01:15.629572 - Device: mps
2024-12-05T17:01:16.046452 - Using sub quadratic optimization for cross attention, if you have memory or speed issues try using: --use-split-cross-attention
2024-12-05T17:01:16.707630 - [Prompt Server] web root: /Volumes/mac/ComfyUI/ComfyUI_windows_portable/ComfyUI/web
2024-12-05T17:01:16.887971 - ### Loading: ComfyUI-Manager (V2.55)2024-12-05T17:01:16.888002 -
2024-12-05T17:01:17.042401 - ### ComfyUI Version: v0.3.6-14-g9a616b8 | Released on '2024-12-04'2024-12-05T17:01:17.042444 -
2024-12-05T17:01:17.046927 - ### Loading: ComfyUI-Impact-Pack (V7.14)2024-12-05T17:01:17.046949 -
2024-12-05T17:01:17.263776 - [ComfyUI-Manager] default cache updated: https://raw.githubusercontent.com/ltdrdata/ComfyUI-Manager/main/alter-list.json2024-12-05T17:01:17.263801 -
2024-12-05T17:01:17.298411 - ### Loading: ComfyUI-Impact-Pack (Subpack: V0.8)2024-12-05T17:01:17.298434 -
2024-12-05T17:01:17.312414 - [ComfyUI-Manager] default cache updated: https://raw.githubusercontent.com/ltdrdata/ComfyUI-Manager/main/model-list.json2024-12-05T17:01:17.312439 -
2024-12-05T17:01:17.326505 - [Impact Pack] Wildcards loading done.2024-12-05T17:01:17.326524 -
2024-12-05T17:01:17.350948 - [ComfyUI-Manager] default cache updated: https://raw.githubusercontent.com/ltdrdata/ComfyUI-Manager/main/github-stats.json2024-12-05T17:01:17.350973 -
2024-12-05T17:01:17.352673 - ### Loading: ComfyUI-Inspire-Pack (V1.9)2024-12-05T17:01:17.352689 -
2024-12-05T17:01:17.400813 - [comfyui_controlnet_aux] | INFO -> Using ckpts path: /Volumes/mac/ComfyUI/ComfyUI_windows_portable/ComfyUI/custom_nodes/comfyui_controlnet_aux/ckpts
2024-12-05T17:01:17.400865 - [comfyui_controlnet_aux] | INFO -> Using symlinks: False
2024-12-05T17:01:17.400908 - [comfyui_controlnet_aux] | INFO -> Using ort providers: ['CUDAExecutionProvider', 'DirectMLExecutionProvider', 'OpenVINOExecutionProvider', 'ROCMExecutionProvider', 'CPUExecutionProvider', 'CoreMLExecutionProvider']
2024-12-05T17:01:17.433399 - (pysssss:WD14Tagger) [DEBUG] Available ORT providers: CoreMLExecutionProvider, AzureExecutionProvider, CPUExecutionProvider2024-12-05T17:01:17.433421 -
2024-12-05T17:01:17.433436 - (pysssss:WD14Tagger) [DEBUG] Using ORT providers: CUDAExecutionProvider, CPUExecutionProvider2024-12-05T17:01:17.433449 -
2024-12-05T17:01:17.510431 -
Import times for custom nodes:
2024-12-05T17:01:17.510504 - 0.0 seconds: /Volumes/mac/ComfyUI/ComfyUI_windows_portable/ComfyUI/custom_nodes/websocket_image_save.py
2024-12-05T17:01:17.510537 - 0.0 seconds: /Volumes/mac/ComfyUI/ComfyUI_windows_portable/ComfyUI/custom_nodes/AIGODLIKE-ComfyUI-Translation
2024-12-05T17:01:17.510565 - 0.0 seconds: /Volumes/mac/ComfyUI/ComfyUI_windows_portable/ComfyUI/custom_nodes/ComfyUI_ADV_CLIP_emb
2024-12-05T17:01:17.510588 - 0.0 seconds: /Volumes/mac/ComfyUI/ComfyUI_windows_portable/ComfyUI/custom_nodes/wlsh_nodes
2024-12-05T17:01:17.510615 - 0.0 seconds: /Volumes/mac/ComfyUI/ComfyUI_windows_portable/ComfyUI/custom_nodes/stability-ComfyUI-nodes
2024-12-05T17:01:17.510635 - 0.0 seconds: /Volumes/mac/ComfyUI/ComfyUI_windows_portable/ComfyUI/custom_nodes/ComfyUI-WD14-Tagger
2024-12-05T17:01:17.510664 - 0.0 seconds: /Volumes/mac/ComfyUI/ComfyUI_windows_portable/ComfyUI/custom_nodes/ComfyUI-Custom-Scripts
2024-12-05T17:01:17.510695 - 0.0 seconds: /Volumes/mac/ComfyUI/ComfyUI_windows_portable/ComfyUI/custom_nodes/ComfyUI-YOLO
2024-12-05T17:01:17.510721 - 0.0 seconds: /Volumes/mac/ComfyUI/ComfyUI_windows_portable/ComfyUI/custom_nodes/ComfyUI_essentials
2024-12-05T17:01:17.510746 - 0.0 seconds: /Volumes/mac/ComfyUI/ComfyUI_windows_portable/ComfyUI/custom_nodes/comfyui_controlnet_aux
2024-12-05T17:01:17.510773 - 0.0 seconds: /Volumes/mac/ComfyUI/ComfyUI_windows_portable/ComfyUI/custom_nodes/ComfyUI-Inspire-Pack
2024-12-05T17:01:17.510799 - 0.1 seconds: /Volumes/mac/ComfyUI/ComfyUI_windows_portable/ComfyUI/custom_nodes/ComfyUI-Advanced-ControlNet
2024-12-05T17:01:17.510820 - 0.2 seconds: /Volumes/mac/ComfyUI/ComfyUI_windows_portable/ComfyUI/custom_nodes/ComfyUI-Manager
2024-12-05T17:01:17.510842 - 0.3 seconds: /Volumes/mac/ComfyUI/ComfyUI_windows_portable/ComfyUI/custom_nodes/ComfyUI-Impact-Pack
2024-12-05T17:01:17.510867 -
2024-12-05T17:01:17.518190 - Starting server

2024-12-05T17:01:17.518444 - To see the GUI go to: http://127.0.0.1:8188
2024-12-05T17:01:17.696495 - [ComfyUI-Manager] default cache updated: https://raw.githubusercontent.com/ltdrdata/ComfyUI-Manager/main/extension-node-map.json2024-12-05T17:01:17.696535 -
2024-12-05T17:01:17.754259 - [ComfyUI-Manager] default cache updated: https://raw.githubusercontent.com/ltdrdata/ComfyUI-Manager/main/custom-node-list.json2024-12-05T17:01:17.754288 -
2024-12-05T17:01:45.858628 - [Inspire Pack] IPAdapterPlus is not installed.2024-12-05T17:01:45.858660 -
2024-12-05T17:01:45.879625 - [Impact Pack] Wildcards loading done.2024-12-05T17:01:45.879653 -
2024-12-05T17:01:47.199818 - got prompt
2024-12-05T17:01:47.218453 - Failed to validate prompt for output 94:
2024-12-05T17:01:47.218700 - * UpscaleModelLoader 72:
2024-12-05T17:01:47.218834 - - Value not in list: model_name: 'ESRGAN_4x' not in ['4x-AnimeSharp.pth', '4x-UltraSharp.pth', '4x_NMKD-Siax_200k.pth', '4x_foolhardy_Remacri.pth', '8x_NMKD-Faces_160000_G.pth', '8x_NMKD-Superscale_150000_G.pth', 'ESRGAN_4x.pth', 'RealESRGAN_x2.pth', 'RealESRGAN_x4.pth']
2024-12-05T17:01:47.218986 - * UltralyticsDetectorProvider 67:
2024-12-05T17:01:47.219145 - - Value not in list: model_name: 'bbox/face_yolov8m' not in ['bbox/face_yolov8m.pt', 'bbox/hand_yolov8s.pt', 'segm/person_yolov8m-seg.pt']
2024-12-05T17:01:47.219420 - Output will be ignored
2024-12-05T17:01:47.846987 - proxy:2024-12-05T17:01:47.847014 - 2024-12-05T17:01:47.847026 - None2024-12-05T17:01:47.847036 -
2024-12-05T17:02:18.318535 - !!! Exception during processing !!! Connection timeout to host https://huggingface.co/SmilingWolf/wd-v1-4-moat-tagger-v2/resolve/main/model.onnx
2024-12-05T17:02:18.387031 - Traceback (most recent call last):
File "/Users/mac/Library/Python/3.9/lib/python/site-packages/aiohttp/connector.py", line 1091, in _wrap_create_connection
sock = await aiohappyeyeballs.start_connection(
File "/Users/mac/Library/Python/3.9/lib/python/site-packages/aiohappyeyeballs/impl.py", line 82, in start_connection
sock = await _connect_sock(
File "/Users/mac/Library/Python/3.9/lib/python/site-packages/aiohappyeyeballs/impl.py", line 174, in _connect_sock
await loop.sock_connect(sock, address)
File "/Library/Developer/CommandLineTools/Library/Frameworks/Python3.framework/Versions/3.9/lib/python3.9/asyncio/selector_events.py", line 502, in sock_connect
return await fut
asyncio.exceptions.CancelledError

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
File "/Users/mac/Library/Python/3.9/lib/python/site-packages/aiohttp/client.py", line 663, in _request
conn = await self._connector.connect(
File "/Users/mac/Library/Python/3.9/lib/python/site-packages/aiohttp/connector.py", line 563, in connect
proto = await self._create_connection(req, traces, timeout)
File "/Users/mac/Library/Python/3.9/lib/python/site-packages/aiohttp/connector.py", line 1032, in _create_connection
_, proto = await self._create_direct_connection(req, traces, timeout)
File "/Users/mac/Library/Python/3.9/lib/python/site-packages/aiohttp/connector.py", line 1366, in _create_direct_connection
raise last_exc
File "/Users/mac/Library/Python/3.9/lib/python/site-packages/aiohttp/connector.py", line 1335, in _create_direct_connection
transp, proto = await self._wrap_create_connection(
File "/Users/mac/Library/Python/3.9/lib/python/site-packages/aiohttp/connector.py", line 1098, in _wrap_create_connection
return await self._loop.create_connection(*args, **kwargs, sock=sock)
File "/Users/mac/Library/Python/3.9/lib/python/site-packages/async_timeout/__init__.py", line 141, in __aexit__
self._do_exit(exc_type)
File "/Users/mac/Library/Python/3.9/lib/python/site-packages/async_timeout/__init__.py", line 228, in _do_exit
raise asyncio.TimeoutError
asyncio.exceptions.TimeoutError

The above exception was the direct cause of the following exception:

Traceback (most recent call last):
File "/Volumes/mac/ComfyUI/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 "/Volumes/mac/ComfyUI/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 "/Volumes/mac/ComfyUI/ComfyUI_windows_portable/ComfyUI/execution.py", line 170, in _map_node_over_list
process_inputs(input_dict, i)
File "/Volumes/mac/ComfyUI/ComfyUI_windows_portable/ComfyUI/execution.py", line 159, in process_inputs
results.append(getattr(obj, func)(**inputs))
File "/Volumes/mac/ComfyUI/ComfyUI_windows_portable/ComfyUI/custom_nodes/ComfyUI-WD14-Tagger/wd14tagger.py", line 200, in tag
tags.append(wait_for_async(lambda: tag(image, model, threshold, character_threshold, exclude_tags, replace_underscore, trailing_comma)))
File "/Volumes/mac/ComfyUI/ComfyUI_windows_portable/ComfyUI/custom_nodes/ComfyUI-WD14-Tagger/pysssss.py", line 207, in wait_for_async
return asyncio.run(async_fn())
File "/Library/Developer/CommandLineTools/Library/Frameworks/Python3.framework/Versions/3.9/lib/python3.9/asyncio/runners.py", line 44, in run
return loop.run_until_complete(main)
File "/Library/Developer/CommandLineTools/Library/Frameworks/Python3.framework/Versions/3.9/lib/python3.9/asyncio/base_events.py", line 642, in run_until_complete
return future.result()
File "/Volumes/mac/ComfyUI/ComfyUI_windows_portable/ComfyUI/custom_nodes/ComfyUI-WD14-Tagger/wd14tagger.py", line 55, in tag
await download_model(model_name, client_id, node)
File "/Volumes/mac/ComfyUI/ComfyUI_windows_portable/ComfyUI/custom_nodes/ComfyUI-WD14-Tagger/wd14tagger.py", line 129, in download_model
await download_to_file(
File "/Volumes/mac/ComfyUI/ComfyUI_windows_portable/ComfyUI/custom_nodes/ComfyUI-WD14-Tagger/pysssss.py", line 184, in download_to_file
async with session.get(url, proxy=proxy, proxy_auth=proxy_auth) as response:
File "/Users/mac/Library/Python/3.9/lib/python/site-packages/aiohttp/client.py", line 1359, in __aenter__
self._resp: _RetType = await self._coro
File "/Users/mac/Library/Python/3.9/lib/python/site-packages/aiohttp/client.py", line 667, in _request
raise ConnectionTimeoutError(
aiohttp.client_exceptions.ConnectionTimeoutError: Connection timeout to host https://huggingface.co/SmilingWolf/wd-v1-4-moat-tagger-v2/resolve/main/model.onnx

2024-12-05T17:02:18.388656 - Prompt executed in 31.16 seconds
2024-12-05T17:05:12.298518 - [Impact Pack] Wildcards loading done.2024-12-05T17:05:12.298621 -
2024-12-05T17:05:13.359284 - got prompt
2024-12-05T17:05:13.379915 - Failed to validate prompt for output 94:
2024-12-05T17:05:13.380170 - * UpscaleModelLoader 72:
2024-12-05T17:05:13.380338 - - Value not in list: model_name: 'ESRGAN_4x' not in ['4x-AnimeSharp.pth', '4x-UltraSharp.pth', '4x_NMKD-Siax_200k.pth', '4x_foolhardy_Remacri.pth', '8x_NMKD-Faces_160000_G.pth', '8x_NMKD-Superscale_150000_G.pth', 'ESRGAN_4x.pth', 'RealESRGAN_x2.pth', 'RealESRGAN_x4.pth']
2024-12-05T17:05:13.380496 - * UltralyticsDetectorProvider 67:
2024-12-05T17:05:13.380632 - - Value not in list: model_name: 'bbox/face_yolov8m' not in ['bbox/face_yolov8m.pt', 'bbox/hand_yolov8s.pt', 'segm/person_yolov8m-seg.pt']
2024-12-05T17:05:13.380769 - Output will be ignored
2024-12-05T17:05:13.631117 - /Users/mac/Library/Python/3.9/lib/python/site-packages/onnxruntime/capi/onnxruntime_inference_collection.py:69: UserWarning: Specified provider 'CUDAExecutionProvider' is not in available provider names.Available providers: 'CoreMLExecutionProvider, AzureExecutionProvider, CPUExecutionProvider'
warnings.warn(
2024-12-05T17:05:15.289603 - 1girl, solo, looking_at_viewer, open_mouth, simple_background, brown_hair, long_sleeves, white_background, standing, full_body, braid, shoes, pants, sneakers, realistic2024-12-05T17:05:15.289666 -
2024-12-05T17:05:15.309845 - Prompt executed in 1.92 seconds
2024-12-05T17:15:59.790608 - got prompt
2024-12-05T17:15:59.817392 - Failed to validate prompt for output 94:
2024-12-05T17:15:59.817770 - * UpscaleModelLoader 72:
2024-12-05T17:15:59.817950 - - Value not in list: model_name: 'ESRGAN_4x' not in ['4x-AnimeSharp.pth', '4x-UltraSharp.pth', '4x_NMKD-Siax_200k.pth', '4x_foolhardy_Remacri.pth', '8x_NMKD-Faces_160000_G.pth', '8x_NMKD-Superscale_150000_G.pth', 'ESRGAN_4x.pth', 'RealESRGAN_x2.pth', 'RealESRGAN_x4.pth']
2024-12-05T17:15:59.818344 - * UltralyticsDetectorProvider 67:
2024-12-05T17:15:59.818605 - - Value not in list: model_name: 'bbox/face_yolov8m' not in ['bbox/face_yolov8m.pt', 'bbox/hand_yolov8s.pt', 'segm/person_yolov8m-seg.pt']
2024-12-05T17:15:59.818727 - Output will be ignored
2024-12-05T17:15:59.897631 - Prompt executed in 0.07 seconds
2024-12-05T17:16:01.612443 - got prompt
2024-12-05T17:16:01.627711 - Failed to validate prompt for output 94:
2024-12-05T17:16:01.627956 - * UpscaleModelLoader 72:
2024-12-05T17:16:01.628037 - - Value not in list: model_name: 'ESRGAN_4x' not in ['4x-AnimeSharp.pth', '4x-UltraSharp.pth', '4x_NMKD-Siax_200k.pth', '4x_foolhardy_Remacri.pth', '8x_NMKD-Faces_160000_G.pth', '8x_NMKD-Superscale_150000_G.pth', 'ESRGAN_4x.pth', 'RealESRGAN_x2.pth', 'RealESRGAN_x4.pth']
2024-12-05T17:16:01.628114 - * UltralyticsDetectorProvider 67:
2024-12-05T17:16:01.628195 - - Value not in list: model_name: 'bbox/face_yolov8m' not in ['bbox/face_yolov8m.pt', 'bbox/hand_yolov8s.pt', 'segm/person_yolov8m-seg.pt']
2024-12-05T17:16:01.628335 - Output will be ignored
2024-12-05T17:16:01.686635 - Prompt executed in 0.05 seconds
2024-12-05T17:16:33.721187 - got prompt
2024-12-05T17:16:33.877416 - Using split attention in VAE
2024-12-05T17:16:33.878261 - Using split attention in VAE
2024-12-05T17:16:35.986141 - Loads SAM model: /Volumes/mac/ComfyUI/ComfyUI_windows_portable/ComfyUI/models/sams/sam_vit_b_01ec64.pth (device:AUTO)2024-12-05T17:16:35.986191 -
2024-12-05T17:16:39.344862 - model weight dtype torch.float16, manual cast: None
2024-12-05T17:16:39.346965 - model_type EPS
2024-12-05T17:16:45.832168 - Using split attention in VAE
2024-12-05T17:16:45.833566 - Using split attention in VAE
2024-12-05T17:16:47.232164 - Requested to load SD1ClipModel
2024-12-05T17:16:47.234438 - loaded completely 9.5367431640625e+25 235.84423828125 True
2024-12-05T17:16:48.227361 - warning, embedding:bad-picture-chill-75v, does not exist, ignoring
2024-12-05T17:16:48.998401 - Requested to load AutoencodingEngine
2024-12-05T17:16:48.998687 - 0 models unloaded.
2024-12-05T17:16:49.101673 - loaded completely 9.5367431640625e+25 319.7467155456543 True
2024-12-05T17:16:52.180520 - Failed to find /Volumes/mac/ComfyUI/ComfyUI_windows_portable/ComfyUI/custom_nodes/comfyui_controlnet_aux/ckpts/lllyasviel/Annotators/sk_model.pth.
Downloading from huggingface.co2024-12-05T17:16:52.180592 -
2024-12-05T17:16:52.180605 - cacher folder is /var/folders/z1/3grtxc1161v7xm0g17lx600h0000gn/T, you can change it by custom_tmp_path in config.yaml2024-12-05T17:16:52.180615 -
2024-12-05T17:16:52.306401 - /Users/mac/Library/Python/3.9/lib/python/site-packages/huggingface_hub/file_download.py:797: FutureWarning: `resume_download` is deprecated and will be removed in version 1.0.0. Downloads always resume when possible. If you want to force a new download, use `force_download=True`.
warnings.warn(
2024-12-05T17:16:52.306670 - /Users/mac/Library/Python/3.9/lib/python/site-packages/huggingface_hub/file_download.py:834: UserWarning: `local_dir_use_symlinks` parameter is deprecated and will be ignored. The process to download files to a local folder has been updated and do not rely on symlinks anymore. You only need to pass a destination folder as`local_dir`.
For more details, check out https://huggingface.co/docs/huggingface_hub/main/en/guides/download#download-files-to-local-folder.
warnings.warn(
2024-12-05T17:17:02.085045 - [Errno 2] No such file or directory: '/var/folders/z1/3grtxc1161v7xm0g17lx600h0000gn/T/ckpts'2024-12-05T17:17:02.085133 -
2024-12-05T17:17:02.085177 - model_path is /Volumes/mac/ComfyUI/ComfyUI_windows_portable/ComfyUI/custom_nodes/comfyui_controlnet_aux/ckpts/lllyasviel/Annotators/sk_model.pth2024-12-05T17:17:02.085200 -
2024-12-05T17:17:02.086307 - Failed to find /Volumes/mac/ComfyUI/ComfyUI_windows_portable/ComfyUI/custom_nodes/comfyui_controlnet_aux/ckpts/lllyasviel/Annotators/sk_model2.pth.
Downloading from huggingface.co2024-12-05T17:17:02.086339 -
2024-12-05T17:17:02.086367 - cacher folder is /var/folders/z1/3grtxc1161v7xm0g17lx600h0000gn/T, you can change it by custom_tmp_path in config.yaml2024-12-05T17:17:02.086391 -
2024-12-05T17:17:09.123555 - [Errno 2] No such file or directory: '/var/folders/z1/3grtxc1161v7xm0g17lx600h0000gn/T/ckpts'2024-12-05T17:17:09.123708 -
2024-12-05T17:17:09.123794 - model_path is /Volumes/mac/ComfyUI/ComfyUI_windows_portable/ComfyUI/custom_nodes/comfyui_controlnet_aux/ckpts/lllyasviel/Annotators/sk_model2.pth2024-12-05T17:17:09.123919 -
2024-12-05T17:17:17.144363 - Requested to load BaseModel
2024-12-05T17:17:17.144806 - Requested to load ControlNetFlux
2024-12-05T17:17:21.395353 - loaded completely 9.5367431640625e+25 1639.406135559082 True
2024-12-05T17:17:21.657663 - loaded completely 9.5367431640625e+25 1418.6997985839844 True
2024-12-05T17:17:21.677434 -
0%| | 0/10 [00:00

Contributor guide

Open the contributing guide

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.