Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

cannot import name 'BertConfig' from 'custom_mesh_graphormer.modeling.bert.modeling_bert' #502

Open
yklau1989 opened this issue Jan 12, 2025 · 36 comments

Comments

@yklau1989
Copy link

yklau1989 commented Jan 12, 2025

Please help
I got this for both MeshGraphormer-DepthMapPreprocessor and MeshGraphormer+ImpactDetector-DepthMapPreprocessor

Also I tried to update with pip install --user --editable .
And did the install.bat again

ComfyUI Error Report

Error Details

  • Node ID: 231
  • Node Type: MeshGraphormer+ImpactDetector-DepthMapPreprocessor
  • Exception Type: ImportError
  • Exception Message: cannot import name 'BertConfig' from 'custom_mesh_graphormer.modeling.bert.modeling_bert' (C:\ai\StabilityMatrix\Packages\ComfyUI\custom_nodes\comfyui_controlnet_aux\src\custom_mesh_graphormer\modeling\bert\modeling_bert.py)

Stack Trace

  File "C:\ai\StabilityMatrix\Packages\ComfyUI\execution.py", line 327, 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:\ai\StabilityMatrix\Packages\ComfyUI\execution.py", line 202, 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:\ai\StabilityMatrix\Packages\ComfyUI\execution.py", line 174, in _map_node_over_list
    process_inputs(input_dict, i)

  File "C:\ai\StabilityMatrix\Packages\ComfyUI\execution.py", line 163, in process_inputs
    results.append(getattr(obj, func)(**inputs))

  File "C:\ai\StabilityMatrix\Packages\ComfyUI\custom_nodes\comfyui_controlnet_aux\node_wrappers\mesh_graphormer.py", line 123, in execute
    from custom_controlnet_aux.mesh_graphormer import MeshGraphormerDetector

  File "C:\ai\StabilityMatrix\Packages\ComfyUI\custom_nodes\comfyui_controlnet_aux\src\custom_controlnet_aux\mesh_graphormer\__init__.py", line 5, in <module>
    from custom_controlnet_aux.mesh_graphormer.pipeline import MeshGraphormerMediapipe, args

  File "C:\ai\StabilityMatrix\Packages\ComfyUI\custom_nodes\comfyui_controlnet_aux\src\custom_controlnet_aux\mesh_graphormer\pipeline.py", line 8, in <module>
    from custom_mesh_graphormer.modeling.bert import BertConfig, Graphormer

  File "C:\ai\StabilityMatrix\Packages\ComfyUI\custom_nodes\comfyui_controlnet_aux\src\custom_mesh_graphormer\modeling\bert\__init__.py", line 3, in <module>
    from .modeling_bert import (BertConfig, BertModel,
@staltux
Copy link

staltux commented Jan 12, 2025

i also have this error in MeshGraphormer Hand Refiner for the versions:

1.0.5 [nightly]
1.0.1
1.0.0

@abullard1
Copy link

Same here

@frank008
Copy link

error: cannot import name 'BertConfig' from 'custom_mesh_graphormer.modeling.bert.modeling_bert'

I have fix the issue;
comfyui ,找不到 插件的依赖包
主程序运行的路径:/ssdDir/comfyui/ComfyUI
因为 comfyui_controlnet_aux 插件内python文件的包引入没有包含绝对路径,导致包在 /ssdDir/comfyui/ComfyUI里面找
,而不是comfyui_controlnet_aux插件里面找,修改__init__.py文件的包路径为comfyui_controlnet_aux插件的绝对路径,重启comfyui即可

/ssdDir/comfyui/ComfyUI/custom_nodes/comfyui_controlnet_aux/src/custom_mesh_graphormer/modeling/bert/init.py

修改 init.py 文件,添加包绝对引入路径

comfyui, the dependency package of the plug-in cannot be found
The path where the main program runs:/ssdDir/comfyui/ComfyUI
Because the package import of the python file in the comfyui_controlnet_aux plug-in does not include the absolute path, the package is found in /ssdDir/comfyui/ComfyUI
, instead of finding it in the comfyui_controlnet_aux plug-in, modify the package path of the init.py file to the absolute path of the comfyui_controlnet_aux plug-in, and restart comfyui.

/ssdDir/comfyui/ComfyUI/custom_nodes/comfyui_controlnet_aux/src/custom_mesh_graphormer/modeling/bert/init.py
Modify the init.py file and add the absolute import path of the package

======================================================================
This is the modified file of init.py:
version = "1.0.0"
import sys
import os
root_path = os.path.abspath(file)
root_path = os.path.dirname(root_path)
print('app run path:',root_path)
sys.path.append(root_path)

from modeling_bert import (BertConfig, BertModel,
load_tf_weights_in_bert)

from modeling_graphormer import Graphormer

from e2e_body_network import Graphormer_Body_Network

from e2e_hand_network import Graphormer_Hand_Network

CONFIG_NAME = "config.json"

from modeling_utils import (WEIGHTS_NAME, TF_WEIGHTS_NAME,
PretrainedConfig, PreTrainedModel, prune_layer, Conv1D)

from file_utils import (PYTORCH_PRETRAINED_BERT_CACHE)

@frank008
Copy link

comfyui-插件异常

@weikk47
Copy link

weikk47 commented Jan 14, 2025

It looks like version 4.48 of the python library transformers removed the BertConfig class.
I ran it successfully in version 4.47.
pip uninstall transformers
pip install transformers==4.47

@nikola43
Copy link

It looks like version 4.48 of the python library transformers removed the BertConfig class. I ran it successfully in version 4.47. pip uninstall transformers pip install transformers==4.47

works, thanks

@DevishMittal
Copy link

It looks like version 4.48 of the python library transformers removed the BertConfig class. I ran it successfully in version 4.47. pip uninstall transformers pip install transformers==4.47

hey in which folder should I run this cmd
in this directory ? D:\ComfyUI_windows_portable_nvidia\ComfyUI_windows_portable\ComfyUI

@yklau1989
Copy link
Author

It looks like version 4.48 of the python library transformers removed the BertConfig class. I ran it successfully in version 4.47. pip uninstall transformers pip install transformers==4.47

Thanks for helping
let me close this issue

@sdadwe007
Copy link

If you are copying someone else's workflow and the problem arises, I have found a good way to simply delete the problematic node and enter it again manually

@staltux
Copy link

staltux commented Jan 16, 2025

It looks like version 4.48 of the python library transformers removed the BertConfig class. I ran it successfully in version 4.47. pip uninstall transformers pip install transformers==4.47

Thanks for helping let me close this issue

why close? you are not supposed to update the node instead of us downgrading the transform?

@yklau1989
Copy link
Author

I didn't quite sure whether it is issue of aux team

@staltux But I think you are right, let me reopen it
downgrading helps but it is not a good fix

@yklau1989 yklau1989 reopened this Jan 16, 2025
@mengqin
Copy link

mengqin commented Jan 21, 2025

error: cannot import name 'BertConfig' from 'custom_mesh_graphormer.modeling.bert.modeling_bert'

I have fix the issue; comfyui ,找不到 插件的依赖包 主程序运行的路径:/ssdDir/comfyui/ComfyUI 因为 comfyui_controlnet_aux 插件内python文件的包引入没有包含绝对路径,导致包在 /ssdDir/comfyui/ComfyUI里面找 ,而不是comfyui_controlnet_aux插件里面找,修改__init__.py文件的包路径为comfyui_controlnet_aux插件的绝对路径,重启comfyui即可

/ssdDir/comfyui/ComfyUI/custom_nodes/comfyui_controlnet_aux/src/custom_mesh_graphormer/modeling/bert/init.py

修改 init.py 文件,添加包绝对引入路径

comfyui, the dependency package of the plug-in cannot be found The path where the main program runs:/ssdDir/comfyui/ComfyUI Because the package import of the python file in the comfyui_controlnet_aux plug-in does not include the absolute path, the package is found in /ssdDir/comfyui/ComfyUI , instead of finding it in the comfyui_controlnet_aux plug-in, modify the package path of the init.py file to the absolute path of the comfyui_controlnet_aux plug-in, and restart comfyui.

/ssdDir/comfyui/ComfyUI/custom_nodes/comfyui_controlnet_aux/src/custom_mesh_graphormer/modeling/bert/init.py Modify the init.py file and add the absolute import path of the package

====================================================================== This is the modified file of init.py: version = "1.0.0" import sys import os root_path = os.path.abspath(file) root_path = os.path.dirname(root_path) print('app run path:',root_path) sys.path.append(root_path)

from modeling_bert import (BertConfig, BertModel, load_tf_weights_in_bert)

from modeling_graphormer import Graphormer

from e2e_body_network import Graphormer_Body_Network

from e2e_hand_network import Graphormer_Hand_Network

CONFIG_NAME = "config.json"

from modeling_utils import (WEIGHTS_NAME, TF_WEIGHTS_NAME, PretrainedConfig, PreTrainedModel, prune_layer, Conv1D)

from file_utils import (PYTORCH_PRETRAINED_BERT_CACHE)

There's nothing to do with the path of model, it's because huggingface's transfermers 0.48.0 move the BertConfig to a new file called configuration_bert, try this patch to fix it. And even it can run with this patch and download the pth model from huggingface, but you still need downgrade mediapipe module to avoid this problem(https://stackoverflow.com/questions/78493742/feedback-manager-requires-a-model-with-a-single-signature-inference). And most crappy thing is after all of this you will found this node output nothing but a black image, it's totally wasted.

diff --git a/src/custom_mesh_graphormer/modeling/bert/init.py b/src/custom_mesh_graphormer/modeling/bert/init.py
index 197c5b9..1399713 100644
--- a/src/custom_mesh_graphormer/modeling/bert/init.py
+++ b/src/custom_mesh_graphormer/modeling/bert/init.py
@@ -1,6 +1,8 @@
version = "1.0.0"

-from .modeling_bert import (BertConfig, BertModel,
+from transformers.models.bert.configuration_bert import BertConfig
+
+from .modeling_bert import (BertModel,
load_tf_weights_in_bert)

from .modeling_graphormer import Graphormer
diff --git a/src/custom_mesh_graphormer/modeling/bert/modeling_graphormer.py b/src/custom_mesh_graphormer/modeling/bert/modeling_graphormer.py
index e7c6e26..6729431 100644
--- a/src/custom_mesh_graphormer/modeling/bert/modeling_graphormer.py
+++ b/src/custom_mesh_graphormer/modeling/bert/modeling_graphormer.py
@@ -12,7 +12,7 @@ import os
import code
import torch
from torch import nn
-from .modeling_bert import BertPreTrainedModel, BertEmbeddings, BertPooler, BertIntermediate, BertOutput, BertSelfOutput
+from transformers.models.bert.modeling_bert import BertPreTrainedModel, BertEmbeddings, BertPooler, BertIntermediate, BertOutput, BertSelfOutput
import custom_mesh_graphormer.modeling.data.config as cfg
from custom_mesh_graphormer.modeling._gcnn import GraphConvolution, GraphResBlock
from .modeling_utils import prune_linear_layer

有空修修吧,挺好的node为啥不维护了呢?

@mamengchao
Copy link

mamengchao commented Jan 24, 2025

modify custom_nodes/comfyui_controlnet_aux/src/custom_mesh_graphormer/modeling/bert/modeling_bert.py

finally code:

# from transformers.models.bert.modeling_bert import *
from transformers.models.bert import modeling_bert

for symbol in dir(modeling_bert):
    if not symbol.startswith("_"):
        globals()[symbol] = getattr(modeling_bert, symbol)

restart comfyui

@Cluoer
Copy link

Cluoer commented Feb 5, 2025

修改 custom_nodes/comfyui_controlnet_aux/src/custom_mesh_graphormer/modeling/bert/modeling_bert.py

最后代码:

from transformers.models.bert.modeling_bert import *

from transformers.models.bert import modeling_bert

for symbol in dir(modeling_bert):
if not symbol.startswith("_"):
globals()[symbol] = getattr(modeling_bert, symbol)
重启 comfyui

bro,you are HERO!!!!!

@McAroney
Copy link

McAroney commented Feb 6, 2025

error: cannot import name 'BertConfig' from 'custom_mesh_graphormer.modeling.bert.modeling_bert'

I have fix the issue; comfyui ,找不到 插件的依赖包 主程序运行的路径:/ssdDir/comfyui/ComfyUI 因为 comfyui_controlnet_aux 插件内python文件的包引入没有包含绝对路径,导致包在 /ssdDir/comfyui/ComfyUI里面找 ,而不是comfyui_controlnet_aux插件里面找,修改__init__.py文件的包路径为comfyui_controlnet_aux插件的绝对路径,重启comfyui即可

/ssdDir/comfyui/ComfyUI/custom_nodes/comfyui_controlnet_aux/src/custom_mesh_graphormer/modeling/bert/init.py

修改 init.py 文件,添加包绝对引入路径

comfyui, the dependency package of the plug-in cannot be found The path where the main program runs:/ssdDir/comfyui/ComfyUI Because the package import of the python file in the comfyui_controlnet_aux plug-in does not include the absolute path, the package is found in /ssdDir/comfyui/ComfyUI , instead of finding it in the comfyui_controlnet_aux plug-in, modify the package path of the init.py file to the absolute path of the comfyui_controlnet_aux plug-in, and restart comfyui.

/ssdDir/comfyui/ComfyUI/custom_nodes/comfyui_controlnet_aux/src/custom_mesh_graphormer/modeling/bert/init.py Modify the init.py file and add the absolute import path of the package

The file in the specified folder is called_init_.py for me..

@ILVIN8
Copy link

ILVIN8 commented Feb 8, 2025

I was tormented with this problem for 2 days. None of the options described above helped to solve the problem completely. In the end I came to this solution:

  1. Remove from ComfyUI comfyui_controlnet_aux

  2. I have a portable build of ComfyUI on Windows from the official repository. So go to the directory with Python in the folder with ComfyUI: ..\python_embedded\ there from the address bar of the explorer call cmd.

  3. At the command line, enter the lines one by one:
    python -m pip uninstall transformers
    python -m pip install transformers==4.47
    python -m pip uninstall mediapipe
    python -m pip install mediapipe==0.10.13

I have not tried other versions of mediapipe, I installed the oldest one available.

  1. Started ComfyUI and installed the latest version of comfyui_controlnet_aux.

  2. Everything worked

@tatatk
Copy link

tatatk commented Feb 10, 2025

I would like to ask about numbers 1 and 2.
First of all, should I delete everything under the ComfyUI folder? Or should I delete the comfyui_controlnet_aux folder located in the custum Nodes folder under the ComfyUI folder ?

Regarding number 2, is it okay to use the following URL for the installation destination ?
https://github.com/comfyanonymous/ComfyUI/releases

However, I think I installed ComfyUI from the URL above in the past, but I can't find the folder called python_embedded. I am using the translation function. I apologize if my English is difficult to understand.

@712123846456zcj
Copy link

from transformers.models.bert import modeling_bert

for symbol in dir(modeling_bert):
if not symbol.startswith("_"):
globals()[symbol] = getattr(modeling_bert, symbol)

ok, well Done

@xkp091
Copy link

xkp091 commented Feb 10, 2025

I downgraded the transformers and mediapipe, now I'm getting a different error:

No module named 'custom_mesh_graphormer.pipeline'

@712123846456zcj
Copy link

I downgraded the transformers and mediapipe, now I'm getting a different error:

No module named 'custom_mesh_graphormer.pipeline'

Can you be more specific? What did you use and what was your working environment like? If it only reports the error No module named 'custom_mesh_graphormer.pipeline', you can try to open the py file with the error in the comfyui terminal, find the line number of the error based on it, and then modify it (if the error is caused by the introduction of a module of transformers, it may be a module path problem)

@xkp091
Copy link

xkp091 commented Feb 10, 2025

I downgraded the transformers and mediapipe, now I'm getting a different error:
No module named 'custom_mesh_graphormer.pipeline'

Can you be more specific? What did you use and what was your working environment like? If it only reports the error No module named 'custom_mesh_graphormer.pipeline', you can try to open the py file with the error in the comfyui terminal, find the line number of the error based on it, and then modify it (if the error is caused by the introduction of a module of transformers, it may be a module path problem)

Specific Environment & Setup Used:
ComfyUI Version: 0.3.14
Python Version: 3.10.6
PyTorch Version: 2.5.1+cu121
Operating System: Windows 10/11
GPU: NVIDIA GeForce RTX 3080 Laptop GPU
Virtual Environment: Yes (venv at C:\Users\user\ComfyUI\python_embedded\venv\Scripts)

Error Encountered:
Exception Message:
ModuleNotFoundError: No module named 'custom_mesh_graphormer.pipeline'

Stack Trace Snippet:
File "C:\Users\user\ComfyUI\custom_nodes\comfyui_controlnet_aux\node_wrappers\mesh_graphormer.py", line 64, in execute
from custom_controlnet_aux.mesh_graphormer import MeshGraphormerDetector
File "C:\Users\user\ComfyUI\custom_nodes\comfyui_controlnet_aux\src\custom_controlnet_aux\mesh_graphormer_init_.py", line 5, in
from custom_controlnet_aux.mesh_graphormer.pipeline import MeshGraphormerMediapipe, args
File "C:\Users\user\ComfyUI\custom_nodes\comfyui_controlnet_aux\src\custom_controlnet_aux\mesh_graphormer\pipeline.py", line 8, in
from custom_mesh_graphormer import MeshGraphormerDetector
File "C:\Users\user\ComfyUI\custom_nodes\comfyui_controlnet_aux\src\custom_mesh_graphormer_init_.py", line 1, in
from .pipeline import MeshGraphormerMediapipe as MeshGraphormerDetector
ModuleNotFoundError: No module named 'custom_mesh_graphormer.pipeline'

@712123846456zcj
Copy link

my plugin:
Image

i not have custom_mesh_graphormer_init_.py

you can try upgrade “comfyui_controlnet_aux”

I downgraded the transformers and mediapipe, now I'm getting a different error:
No module named 'custom_mesh_graphormer.pipeline'

Can you be more specific? What did you use and what was your working environment like? If it only reports the error No module named 'custom_mesh_graphormer.pipeline', you can try to open the py file with the error in the comfyui terminal, find the line number of the error based on it, and then modify it (if the error is caused by the introduction of a module of transformers, it may be a module path problem)

Specific Environment & Setup Used: ComfyUI Version: 0.3.14 Python Version: 3.10.6 PyTorch Version: 2.5.1+cu121 Operating System: Windows 10/11 GPU: NVIDIA GeForce RTX 3080 Laptop GPU Virtual Environment: Yes (venv at C:\Users\user\ComfyUI\python_embedded\venv\Scripts)

Error Encountered: Exception Message: ModuleNotFoundError: No module named 'custom_mesh_graphormer.pipeline'

Stack Trace Snippet: File "C:\Users\user\ComfyUI\custom_nodes\comfyui_controlnet_aux\node_wrappers\mesh_graphormer.py", line 64, in execute from custom_controlnet_aux.mesh_graphormer import MeshGraphormerDetector File "C:\Users\user\ComfyUI\custom_nodes\comfyui_controlnet_aux\src\custom_controlnet_aux\mesh_graphormer__init__.py", line 5, in from custom_controlnet_aux.mesh_graphormer.pipeline import MeshGraphormerMediapipe, args File "C:\Users\user\ComfyUI\custom_nodes\comfyui_controlnet_aux\src\custom_controlnet_aux\mesh_graphormer\pipeline.py", line 8, in from custom_mesh_graphormer import MeshGraphormerDetector File "C:\Users\user\ComfyUI\custom_nodes\comfyui_controlnet_aux\src\custom_mesh_graphormer__init__.py", line 1, in from .pipeline import MeshGraphormerMediapipe as MeshGraphormerDetector ModuleNotFoundError: No module named 'custom_mesh_graphormer.pipeline'

@xkp091
Copy link

xkp091 commented Feb 10, 2025

my plugin: Image

i not have custom_mesh_graphormer_init_.py

you can try upgrade “comfyui_controlnet_aux”

I downgraded the transformers and mediapipe, now I'm getting a different error:
No module named 'custom_mesh_graphormer.pipeline'

Can you be more specific? What did you use and what was your working environment like? If it only reports the error No module named 'custom_mesh_graphormer.pipeline', you can try to open the py file with the error in the comfyui terminal, find the line number of the error based on it, and then modify it (if the error is caused by the introduction of a module of transformers, it may be a module path problem)

Specific Environment & Setup Used: ComfyUI Version: 0.3.14 Python Version: 3.10.6 PyTorch Version: 2.5.1+cu121 Operating System: Windows 10/11 GPU: NVIDIA GeForce RTX 3080 Laptop GPU Virtual Environment: Yes (venv at C:\Users\user\ComfyUI\python_embedded\venv\Scripts)
Error Encountered: Exception Message: ModuleNotFoundError: No module named 'custom_mesh_graphormer.pipeline'
Stack Trace Snippet: File "C:\Users\user\ComfyUI\custom_nodes\comfyui_controlnet_aux\node_wrappers\mesh_graphormer.py", line 64, in execute from custom_controlnet_aux.mesh_graphormer import MeshGraphormerDetector File "C:\Users\user\ComfyUI\custom_nodes\comfyui_controlnet_aux\src\custom_controlnet_aux\mesh_graphormer__init__.py", line 5, in from custom_controlnet_aux.mesh_graphormer.pipeline import MeshGraphormerMediapipe, args File "C:\Users\user\ComfyUI\custom_nodes\comfyui_controlnet_aux\src\custom_controlnet_aux\mesh_graphormer\pipeline.py", line 8, in from custom_mesh_graphormer import MeshGraphormerDetector File "C:\Users\user\ComfyUI\custom_nodes\comfyui_controlnet_aux\src\custom_mesh_graphormer__init__.py", line 1, in from .pipeline import MeshGraphormerMediapipe as MeshGraphormerDetector ModuleNotFoundError: No module named 'custom_mesh_graphormer.pipeline'

I did git reset and pull, still same issue. How else can I upgrade?

@712123846456zcj
Copy link

my plugin: Image
i not have custom_mesh_graphormer_init_.py
you can try upgrade “comfyui_controlnet_aux”

I downgraded the transformers and mediapipe, now I'm getting a different error:
No module named 'custom_mesh_graphormer.pipeline'

Can you be more specific? What did you use and what was your working environment like? If it only reports the error No module named 'custom_mesh_graphormer.pipeline', you can try to open the py file with the error in the comfyui terminal, find the line number of the error based on it, and then modify it (if the error is caused by the introduction of a module of transformers, it may be a module path problem)

Specific Environment & Setup Used: ComfyUI Version: 0.3.14 Python Version: 3.10.6 PyTorch Version: 2.5.1+cu121 Operating System: Windows 10/11 GPU: NVIDIA GeForce RTX 3080 Laptop GPU Virtual Environment: Yes (venv at C:\Users\user\ComfyUI\python_embedded\venv\Scripts)
Error Encountered: Exception Message: ModuleNotFoundError: No module named 'custom_mesh_graphormer.pipeline'
Stack Trace Snippet: File "C:\Users\user\ComfyUI\custom_nodes\comfyui_controlnet_aux\node_wrappers\mesh_graphormer.py", line 64, in execute from custom_controlnet_aux.mesh_graphormer import MeshGraphormerDetector File "C:\Users\user\ComfyUI\custom_nodes\comfyui_controlnet_aux\src\custom_controlnet_aux\mesh_graphormer__init__.py", line 5, in from custom_controlnet_aux.mesh_graphormer.pipeline import MeshGraphormerMediapipe, args File "C:\Users\user\ComfyUI\custom_nodes\comfyui_controlnet_aux\src\custom_controlnet_aux\mesh_graphormer\pipeline.py", line 8, in from custom_mesh_graphormer import MeshGraphormerDetector File "C:\Users\user\ComfyUI\custom_nodes\comfyui_controlnet_aux\src\custom_mesh_graphormer__init__.py", line 1, in from .pipeline import MeshGraphormerMediapipe as MeshGraphormerDetector ModuleNotFoundError: No module named 'custom_mesh_graphormer.pipeline'

I did git reset and pull, still same issue. How else can I upgrade?

close terminal and restart your comfyui,send your new error img for me,or have workflow?

@xkp091
Copy link

xkp091 commented Feb 10, 2025

Image

@xkp091
Copy link

xkp091 commented Feb 10, 2025

my plugin: Image
i not have custom_mesh_graphormer_init_.py
you can try upgrade “comfyui_controlnet_aux”

I downgraded the transformers and mediapipe, now I'm getting a different error:
No module named 'custom_mesh_graphormer.pipeline'

Can you be more specific? What did you use and what was your working environment like? If it only reports the error No module named 'custom_mesh_graphormer.pipeline', you can try to open the py file with the error in the comfyui terminal, find the line number of the error based on it, and then modify it (if the error is caused by the introduction of a module of transformers, it may be a module path problem)

Specific Environment & Setup Used: ComfyUI Version: 0.3.14 Python Version: 3.10.6 PyTorch Version: 2.5.1+cu121 Operating System: Windows 10/11 GPU: NVIDIA GeForce RTX 3080 Laptop GPU Virtual Environment: Yes (venv at C:\Users\user\ComfyUI\python_embedded\venv\Scripts)
Error Encountered: Exception Message: ModuleNotFoundError: No module named 'custom_mesh_graphormer.pipeline'
Stack Trace Snippet: File "C:\Users\user\ComfyUI\custom_nodes\comfyui_controlnet_aux\node_wrappers\mesh_graphormer.py", line 64, in execute from custom_controlnet_aux.mesh_graphormer import MeshGraphormerDetector File "C:\Users\user\ComfyUI\custom_nodes\comfyui_controlnet_aux\src\custom_controlnet_aux\mesh_graphormer__init__.py", line 5, in from custom_controlnet_aux.mesh_graphormer.pipeline import MeshGraphormerMediapipe, args File "C:\Users\user\ComfyUI\custom_nodes\comfyui_controlnet_aux\src\custom_controlnet_aux\mesh_graphormer\pipeline.py", line 8, in from custom_mesh_graphormer import MeshGraphormerDetector File "C:\Users\user\ComfyUI\custom_nodes\comfyui_controlnet_aux\src\custom_mesh_graphormer__init__.py", line 1, in from .pipeline import MeshGraphormerMediapipe as MeshGraphormerDetector ModuleNotFoundError: No module named 'custom_mesh_graphormer.pipeline'

I did git reset and pull, still same issue. How else can I upgrade?

close terminal and restart your comfyui,send your new error img for me,or have workflow?

Image

@712123846456zcj
Copy link

Image

C:\Users\user\ComfyUI\custom_nodes\comfyui_controlnet_aux\src\custom_mesh_graphormer__init__.py is your old error. To be precise, in the latest comfyui_controlnet_aux version, there is no custom_mesh_graphormer__init__.py, only init.py and there is no content in it. If you still have an error in the custom_mesh_graphormer__init__.py file, then you may not have updated successfully. Maybe you can download it manually: https://github.com/Fannovel16/comfyui_controlnet_aux/tree/main

And my mediapipe version is 0.10.20

@xkp091
Copy link

xkp091 commented Feb 10, 2025

C:\Users\user\ComfyUI\custom_nodes\comfyui_controlnet_aux\src\custom_mesh_graphormer__init__.py is your old error. To be precise, in the latest comfyui_controlnet_aux version, there is no custom_mesh_graphormer__init__.py, only init.py and there is no content in it. If you still have an error in the custom_mesh_graphormer__init__.py file, then you may not have updated successfully. Maybe you can download it manually: https://github.com/Fannovel16/comfyui_controlnet_aux/tree/main

And my mediapipe version is 0.10.20

Final attempt: I went into the__init__.py folder and removed the text so that the file is empty.

I now get a different error when I reload Comfy, as shown in the image.

Image

Since this is not working and unless anyone knows a fix without uninstalling, should I uninstall the node completely or change versions? I don't really want to do that since my workflow has a few nodes using controlnet_aux. Will uninstall and reinstalling it effect or ruin my current nodes or will everything reapply normally when reinstalled?

Also will I have to do the transformers + mediapipe fixes again once reinstalled?

Thanks

@712123846456zcj
Copy link

you can reinstall controlnet_aux,

C:\Users\user\ComfyUI\custom_nodes\comfyui_controlnet_aux\src\custom_mesh_graphormer__init__.py 是你的老错误,准确的说,在最新的 comfyui_controlnet_aux 版本中,没有 custom_mesh_graphormer__init__.py,只有init .py,里面没有任何内容。如果你在 custom_mesh_graphormer__init__.py 文件中仍然有错误,那么你可能没有更新成功。也许你可以手动下载:https ://github.com/Fannovel16/comfyui_controlnet_aux/tree/main
我的 mediapipe 版本是 0.10.20

最后的尝试:我进入__init__.py 文件夹并删除了文本,以便文件为空。

现在,当我重新加载 Comfy 时,出现了不同的错误,如图所示。

Image

由于这不起作用,除非有人知道无需卸载即可修复,否则我应该完全卸载节点还是更改版本?我真的不想这样做,因为我的工作流有几个使用 controlnet_aux 的节点。卸载并重新安装它会影响或破坏我当前的节点吗?还是重新安装后一切都会正常重新应用?

重新安装后我是否还必须再次进行变压器 + 媒体管道修复?

谢谢

You can completely uninstall (delete) controlnet_aux (if there are models in it, you can back it up in advance and put it back in after reinstalling) and reinstall it.

I just started making my own comfyui integration package in the past month, which solved many problems and node upgrades.

You should upgrade your nodes in time (unless you are using an old comfyui, I suggest you reinstall it). Because this is the only way to adapt to the latest features and various gameplay.

And I have also studied many workflows, some of which are old and use old nodes (corresponding to the class name or method name in the python code). If you know which one this node uses to replace, you can also manually replace it, or modify this workflow, so I also recommend using the new version of the workflow. In addition, can you tell me your workflow? I am not sure if you are using the hand fix version of MeshGraphommer-DepthMapPreprocessor。
over:I recommend you to adapt to all new content

@colorcell
Copy link

修改 custom_nodes/comfyui_controlnet_aux/src/custom_mesh_graphormer/modeling/bert/modeling_bert.py
最后代码:

from transformers.models.bert.modeling_bert import *

from transformers.models.bert import modeling_bert
for symbol in dir(modeling_bert):
if not symbol.startswith("_"):
globals()[symbol] = getattr(modeling_bert, symbol)
重启 comfyui

bro,you are HERO!!!!!


Original Code (Incorrect):

from transformers.models.bert import modeling_bert

for symbol in dir(modeling_bert):
if not symbol.startswith("_"):
globals()[symbol] = getattr(modeling_bert, symbol)

Fixed Code (Correct Indentation):

from transformers.models.bert import modeling_bert

for symbol in dir(modeling_bert):
if not symbol.startswith("_"): # Indented by 4 spaces
globals()[symbol] = getattr(modeling_bert, symbol) # Indented by 8 spaces (under the if)

Explanation:
Python requires consistent indentation (usually 4 spaces per level) after for/if statements.

The if and globals() lines must be indented to show they belong to the for loop block.

How to Fix:
Open modeling_bert.py in a text editor.

Add 4 spaces before if not symbol.startswith("_").

Add 8 spaces (or a second level of indentation) before globals()[symbol]....

Save the file and restart ComfyUI.

Verify the init.py File:
Your init.py looks correct—no changes needed.

@Jodre11
Copy link

Jodre11 commented Feb 11, 2025

ComfyUI Error Report

Error Details

  • Node ID: 181
  • Node Type: MeshGraphormer-DepthMapPreprocessor
  • Exception Type: ImportError
  • Exception Message: cannot import name 'BertConfig' from 'custom_mesh_graphormer.modeling.bert.modeling_bert' (C:\Users\chris\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfyui_controlnet_aux\src\custom_mesh_graphormer\modeling\bert\modeling_bert.py)

Stack Trace

  File "C:\Users\chris\ComfyUI_windows_portable\ComfyUI\execution.py", line 327, 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:\Users\chris\ComfyUI_windows_portable\ComfyUI\execution.py", line 202, 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:\Users\chris\ComfyUI_windows_portable\ComfyUI\execution.py", line 174, in _map_node_over_list
    process_inputs(input_dict, i)

  File "C:\Users\chris\ComfyUI_windows_portable\ComfyUI\execution.py", line 163, in process_inputs
    results.append(getattr(obj, func)(**inputs))
                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^

  File "C:\Users\chris\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfyui_controlnet_aux\node_wrappers\mesh_graphormer.py", line 64, in execute
    from custom_controlnet_aux.mesh_graphormer import MeshGraphormerDetector

  File "C:\Users\chris\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfyui_controlnet_aux\src\custom_controlnet_aux\mesh_graphormer\__init__.py", line 5, in <module>
    from custom_controlnet_aux.mesh_graphormer.pipeline import MeshGraphormerMediapipe, args

  File "C:\Users\chris\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfyui_controlnet_aux\src\custom_controlnet_aux\mesh_graphormer\pipeline.py", line 8, in <module>
    from custom_mesh_graphormer.modeling.bert import BertConfig, Graphormer

  File "C:\Users\chris\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfyui_controlnet_aux\src\custom_mesh_graphormer\modeling\bert\__init__.py", line 3, in <module>
    from .modeling_bert import (BertConfig, BertModel,

System Information

  • ComfyUI Version: 0.3.14
  • Arguments: ComfyUI\main.py
  • OS: nt
  • Python Version: 3.12.8 (tags/v3.12.8:2dc476b, Dec 3 2024, 19:30:04) [MSC v.1942 64 bit (AMD64)]
  • Embedded Python: true
  • PyTorch Version: 2.6.0+cu126

Devices

  • Name: cuda:0 NVIDIA GeForce RTX 3070 Ti Laptop GPU : cudaMallocAsync
    • Type: cuda
    • VRAM Total: 8589410304
    • VRAM Free: 1431016562
    • Torch VRAM Total: 5234491392
    • Torch VRAM Free: 41129074

Logs

2025-02-11T11:46:14.730574 - 
2025-02-11T11:46:14.730574 - ** ComfyUI-Manager config path:2025-02-11T11:46:14.730574 -  2025-02-11T11:46:14.730574 - C:\Users\chris\ComfyUI_windows_portable\ComfyUI\user\default\ComfyUI-Manager\config.ini2025-02-11T11:46:14.730574 - 
2025-02-11T11:46:14.730574 - ** Log path:2025-02-11T11:46:14.730574 -  2025-02-11T11:46:14.730574 - C:\Users\chris\ComfyUI_windows_portable\ComfyUI\user\comfyui.log2025-02-11T11:46:14.730574 - 
2025-02-11T11:46:15.281195 - 
#######################################################################2025-02-11T11:46:15.281195 - 
2025-02-11T11:46:15.281195 - [ComfyUI-Manager] Starting dependency installation/(de)activation for the extension
2025-02-11T11:46:15.282193 - 
2025-02-11T11:46:15.293206 - 
## ComfyUI-Manager: EXECUTE => ['C:\\Users\\chris\\ComfyUI_windows_portable\\python_embeded\\python.exe', '-m', 'pip', 'install', 'huggingface_hub']2025-02-11T11:46:15.294228 - 
2025-02-11T11:46:15.294228 - 
## Execute install/(de)activation script for 'C:\Users\chris\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfyui_controlnet_aux'2025-02-11T11:46:15.294228 - 
2025-02-11T11:46:16.305895 - 2025-02-11T11:46:16.305895 -  2025-02-11T11:46:16.305895 - 2025-02-11T11:46:16.311853 - 2025-02-11T11:46:16.311853 -  2025-02-11T11:46:16.313053 - 2025-02-11T11:46:16.313053 - 2025-02-11T11:46:16.313053 -  2025-02-11T11:46:16.313053 - 2025-02-11T11:46:16.313053 - 2025-02-11T11:46:16.313053 -  2025-02-11T11:46:16.313053 - 2025-02-11T11:46:16.313053 - 2025-02-11T11:46:16.313053 -  2025-02-11T11:46:16.313053 - 2025-02-11T11:46:16.313053 - 2025-02-11T11:46:16.313053 -  2025-02-11T11:46:16.314167 - 2025-02-11T11:46:16.314167 - 2025-02-11T11:46:16.314167 -  2025-02-11T11:46:16.314167 - 2025-02-11T11:46:16.314167 - 2025-02-11T11:46:16.314167 -  2025-02-11T11:46:16.314167 - 2025-02-11T11:46:16.323427 - 2025-02-11T11:46:16.323427 -  2025-02-11T11:46:16.324335 - 2025-02-11T11:46:16.326327 - 2025-02-11T11:46:16.326327 -  2025-02-11T11:46:16.326327 - 2025-02-11T11:46:16.327329 - 2025-02-11T11:46:16.327329 -  2025-02-11T11:46:16.327329 - 2025-02-11T11:46:16.327329 - 2025-02-11T11:46:16.327329 -  2025-02-11T11:46:16.327329 - 2025-02-11T11:46:16.327329 - 2025-02-11T11:46:16.327329 -  2025-02-11T11:46:16.328337 - 2025-02-11T11:46:16.823261 - [SKIP] Downgrading pip package isn't allowed: opencv-python (cur=4.11.0.86)2025-02-11T11:46:16.824269 - 
2025-02-11T11:46:16.825267 - 
## ComfyUI-Manager: EXECUTE => ['C:\\Users\\chris\\ComfyUI_windows_portable\\python_embeded\\python.exe', '-m', 'pip', 'install', 'pyyaml']2025-02-11T11:46:16.826263 - 
2025-02-11T11:46:16.826263 - 
## Execute install/(de)activation script for 'C:\Users\chris\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfyui_controlnet_aux'2025-02-11T11:46:16.826263 - 
2025-02-11T11:46:17.858704 - 2025-02-11T11:46:17.858704 -  2025-02-11T11:46:17.858704 - 2025-02-11T11:46:18.347964 - 
## ComfyUI-Manager: EXECUTE => ['C:\\Users\\chris\\ComfyUI_windows_portable\\python_embeded\\python.exe', '-m', 'pip', 'install', 'trimesh[easy]']2025-02-11T11:46:18.348953 - 
2025-02-11T11:46:18.348953 - 
## Execute install/(de)activation script for 'C:\Users\chris\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfyui_controlnet_aux'2025-02-11T11:46:18.348953 - 
2025-02-11T11:46:19.366723 - 2025-02-11T11:46:19.366723 -  2025-02-11T11:46:19.366723 - 2025-02-11T11:46:19.370784 - 2025-02-11T11:46:19.370784 -  2025-02-11T11:46:19.370784 - 2025-02-11T11:46:19.370784 - 2025-02-11T11:46:19.370784 -  2025-02-11T11:46:19.371795 - 2025-02-11T11:46:19.371795 - 2025-02-11T11:46:19.371795 -  2025-02-11T11:46:19.371795 - 2025-02-11T11:46:19.371795 - 2025-02-11T11:46:19.371795 -  2025-02-11T11:46:19.371795 - 2025-02-11T11:46:19.372797 - 2025-02-11T11:46:19.372797 -  2025-02-11T11:46:19.372797 - 2025-02-11T11:46:19.372797 - 2025-02-11T11:46:19.372797 -  2025-02-11T11:46:19.372797 - 2025-02-11T11:46:19.372797 - 2025-02-11T11:46:19.372797 -  2025-02-11T11:46:19.372797 - 2025-02-11T11:46:19.372797 - 2025-02-11T11:46:19.372797 -  2025-02-11T11:46:19.373797 - 2025-02-11T11:46:19.373797 - 2025-02-11T11:46:19.373797 -  2025-02-11T11:46:19.373797 - 2025-02-11T11:46:19.373797 - 2025-02-11T11:46:19.373797 -  2025-02-11T11:46:19.373797 - 2025-02-11T11:46:19.374789 - 2025-02-11T11:46:19.374789 -  2025-02-11T11:46:19.374789 - 2025-02-11T11:46:19.374789 - 2025-02-11T11:46:19.374789 -  2025-02-11T11:46:19.374789 - 2025-02-11T11:46:19.374789 - 2025-02-11T11:46:19.374789 -  2025-02-11T11:46:19.374789 - 2025-02-11T11:46:19.375793 - 2025-02-11T11:46:19.375793 -  2025-02-11T11:46:19.375793 - 2025-02-11T11:46:19.375793 - 2025-02-11T11:46:19.375793 -  2025-02-11T11:46:19.375793 - 2025-02-11T11:46:19.375793 - 2025-02-11T11:46:19.376794 -  2025-02-11T11:46:19.376794 - 2025-02-11T11:46:19.376794 - 2025-02-11T11:46:19.376794 -  2025-02-11T11:46:19.376794 - 2025-02-11T11:46:19.376794 - 2025-02-11T11:46:19.376794 -  2025-02-11T11:46:19.376794 - 2025-02-11T11:46:19.377791 - 2025-02-11T11:46:19.377791 -  2025-02-11T11:46:19.377791 - 2025-02-11T11:46:19.384036 - 2025-02-11T11:46:19.384036 -  2025-02-11T11:46:19.384036 - 2025-02-11T11:46:19.386044 - 2025-02-11T11:46:19.386044 -  2025-02-11T11:46:19.386044 - 2025-02-11T11:46:19.386044 - 2025-02-11T11:46:19.386044 -  2025-02-11T11:46:19.386044 - 2025-02-11T11:46:19.387049 - 2025-02-11T11:46:19.387049 -  2025-02-11T11:46:19.387049 - 2025-02-11T11:46:19.387049 - 2025-02-11T11:46:19.387049 -  2025-02-11T11:46:19.387049 - 2025-02-11T11:46:19.389049 - 2025-02-11T11:46:19.389049 -  2025-02-11T11:46:19.389049 - 2025-02-11T11:46:19.391046 - 2025-02-11T11:46:19.391046 -  2025-02-11T11:46:19.391046 - 2025-02-11T11:46:19.392043 - 2025-02-11T11:46:19.392043 -  2025-02-11T11:46:19.392043 - 2025-02-11T11:46:19.392043 - 2025-02-11T11:46:19.392043 -  2025-02-11T11:46:19.392043 - 2025-02-11T11:46:19.392043 - 2025-02-11T11:46:19.392043 -  2025-02-11T11:46:19.393046 - 2025-02-11T11:46:19.399343 - 2025-02-11T11:46:19.399343 -  2025-02-11T11:46:19.399343 - 2025-02-11T11:46:19.422162 - 2025-02-11T11:46:19.422162 -  2025-02-11T11:46:19.422162 - 2025-02-11T11:46:19.423169 - 2025-02-11T11:46:19.423169 -  2025-02-11T11:46:19.423169 - 2025-02-11T11:46:19.426946 - 2025-02-11T11:46:19.426946 -  2025-02-11T11:46:19.426946 - 2025-02-11T11:46:19.919838 - 
[ComfyUI-Manager] Startup script completed.2025-02-11T11:46:19.919838 - 
2025-02-11T11:46:19.920842 - #######################################################################
2025-02-11T11:46:19.920842 - 
2025-02-11T11:46:20.471231 - 
Prestartup times for custom nodes:
2025-02-11T11:46:20.471231 -    7.5 seconds: C:\Users\chris\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfyui-manager
2025-02-11T11:46:20.471231 - 
2025-02-11T11:46:24.534156 - Checkpoint files will always be loaded safely.
2025-02-11T11:46:24.719136 - Total VRAM 8192 MB, total RAM 16108 MB
2025-02-11T11:46:24.720132 - pytorch version: 2.6.0+cu126
2025-02-11T11:46:24.720132 - Set vram state to: NORMAL_VRAM
2025-02-11T11:46:24.721125 - Device: cuda:0 NVIDIA GeForce RTX 3070 Ti Laptop GPU : cudaMallocAsync
2025-02-11T11:46:27.556425 - Using pytorch attention
2025-02-11T11:46:30.723609 - ComfyUI version: 0.3.14
2025-02-11T11:46:30.806447 - [Prompt Server] web root: C:\Users\chris\ComfyUI_windows_portable\ComfyUI\web
2025-02-11T11:46:32.121943 - ### Loading: ComfyUI-Impact-Pack (V8.8.1)2025-02-11T11:46:32.121943 - 
2025-02-11T11:46:32.506942 - [Impact Pack] Wildcards loading done.2025-02-11T11:46:32.506942 - 
2025-02-11T11:46:32.537587 - ### Loading: ComfyUI-Impact-Subpack (V1.2.9)
2025-02-11T11:46:33.586289 - [Impact Subpack] ultralytics_bbox: C:\Users\chris\ComfyUI_windows_portable\ComfyUI\models\ultralytics\bbox
2025-02-11T11:46:33.586289 - [Impact Subpack] ultralytics_segm: C:\Users\chris\ComfyUI_windows_portable\ComfyUI\models\ultralytics\segm
2025-02-11T11:46:33.587321 - ### Loading: ComfyUI-Inspire-Pack (V1.13.1)2025-02-11T11:46:33.587321 - 
2025-02-11T11:46:33.710620 - ### Loading: ComfyUI-Manager (V3.18.1)
2025-02-11T11:46:33.861095 - ### ComfyUI Version: v0.3.14-13-ge57d2282 | Released on '2025-02-11'
2025-02-11T11:46:34.310027 - [ComfyUI-Manager] default cache updated: https://raw.githubusercontent.com/ltdrdata/ComfyUI-Manager/main/alter-list.json
2025-02-11T11:46:34.343618 - [ComfyUI-Manager] default cache updated: https://raw.githubusercontent.com/ltdrdata/ComfyUI-Manager/main/model-list.json
2025-02-11T11:46:34.380219 - [ComfyUI-Manager] default cache updated: https://raw.githubusercontent.com/ltdrdata/ComfyUI-Manager/main/github-stats.json
2025-02-11T11:46:34.450010 - [ComfyUI-Manager] default cache updated: https://raw.githubusercontent.com/ltdrdata/ComfyUI-Manager/main/custom-node-list.json
2025-02-11T11:46:34.454013 - C:\Users\chris\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI_Comfyroll_CustomNodes\nodes\nodes_list.py:383: SyntaxWarning: invalid escape sequence '\W'
  "optional": {"folder_path": ("STRING", {"default": "C:\Windows\Fonts", "multiline": False}),
2025-02-11T11:46:34.455249 - C:\Users\chris\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI_Comfyroll_CustomNodes\nodes\nodes_list.py:393: SyntaxWarning: invalid escape sequence '\W'
  def make_list(self, source_folder, start_index, max_rows, folder_path="C:\Windows\Fonts"):
2025-02-11T11:46:34.536233 - [ComfyUI-Manager] default cache updated: https://raw.githubusercontent.com/ltdrdata/ComfyUI-Manager/main/extension-node-map.json
2025-02-11T11:46:34.691096 - C:\Users\chris\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI_Comfyroll_CustomNodes\nodes\nodes_xygrid.py:256: SyntaxWarning: invalid escape sequence '\R'
  resolved_font_path = os.path.join(os.path.dirname(os.path.dirname(os.path.realpath(__file__))), "fonts\Roboto-Regular.ttf")
2025-02-11T11:46:35.457390 - ------------------------------------------2025-02-11T11:46:35.458403 - 
2025-02-11T11:46:35.458403 - �[34mComfyroll Studio v1.76 : �[92m 175 Nodes Loaded�[0m2025-02-11T11:46:35.458403 - 
2025-02-11T11:46:35.458403 - ------------------------------------------2025-02-11T11:46:35.459395 - 
2025-02-11T11:46:35.459395 - ** For changes, please see patch notes at https://github.com/Suzie1/ComfyUI_Comfyroll_CustomNodes/blob/main/Patch_Notes.md2025-02-11T11:46:35.459395 - 
2025-02-11T11:46:35.459395 - ** For help, please see the wiki at https://github.com/Suzie1/ComfyUI_Comfyroll_CustomNodes/wiki2025-02-11T11:46:35.459395 - 
2025-02-11T11:46:35.459395 - ------------------------------------------2025-02-11T11:46:35.459395 - 
2025-02-11T11:46:35.542843 - �[36;20m[comfyui_controlnet_aux] | INFO -> Using ckpts path: C:\Users\chris\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfyui_controlnet_aux\ckpts�[0m
2025-02-11T11:46:35.543840 - �[36;20m[comfyui_controlnet_aux] | INFO -> Using symlinks: False�[0m
2025-02-11T11:46:35.545841 - �[36;20m[comfyui_controlnet_aux] | INFO -> Using ort providers: ['CUDAExecutionProvider', 'DirectMLExecutionProvider', 'OpenVINOExecutionProvider', 'ROCMExecutionProvider', 'CPUExecutionProvider', 'CoreMLExecutionProvider']�[0m
2025-02-11T11:46:36.542724 - 
�[36mEfficiency Nodes:�[0m Attempting to add Control Net options to the 'HiRes-Fix Script' Node (comfyui_controlnet_aux add-on)...�[92mSuccess!�[0m2025-02-11T11:46:36.542724 - 
2025-02-11T11:46:36.549157 - 
Import times for custom nodes:
2025-02-11T11:46:36.549157 -    0.0 seconds: C:\Users\chris\ComfyUI_windows_portable\ComfyUI\custom_nodes\websocket_image_save.py
2025-02-11T11:46:36.550156 -    0.0 seconds: C:\Users\chris\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI_UltimateSDUpscale
2025-02-11T11:46:36.550156 -    0.0 seconds: C:\Users\chris\ComfyUI_windows_portable\ComfyUI\custom_nodes\efficiency-nodes-comfyui
2025-02-11T11:46:36.550156 -    0.1 seconds: C:\Users\chris\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfyui_ipadapter_plus
2025-02-11T11:46:36.551168 -    0.1 seconds: C:\Users\chris\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-Inspire-Pack
2025-02-11T11:46:36.551168 -    0.4 seconds: C:\Users\chris\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-Impact-Pack
2025-02-11T11:46:36.551168 -    0.6 seconds: C:\Users\chris\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfyui-manager
2025-02-11T11:46:36.552163 -    1.0 seconds: C:\Users\chris\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfyui_controlnet_aux
2025-02-11T11:46:36.552163 -    1.1 seconds: C:\Users\chris\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfyui-impact-subpack
2025-02-11T11:46:36.552163 -    1.2 seconds: C:\Users\chris\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI_Comfyroll_CustomNodes
2025-02-11T11:46:36.552163 - 
2025-02-11T11:46:36.567906 - Starting server

2025-02-11T11:46:36.569905 - To see the GUI go to: http://127.0.0.1:8188
2025-02-11T11:46:37.439128 - FETCH ComfyRegistry Data: 5/332025-02-11T11:46:37.439128 - 
2025-02-11T11:46:39.565609 - Exception in callback _ProactorBasePipeTransport._call_connection_lost(None)
handle: <Handle _ProactorBasePipeTransport._call_connection_lost(None)>
Traceback (most recent call last):
  File "asyncio\events.py", line 88, in _run
  File "asyncio\proactor_events.py", line 165, in _call_connection_lost
ConnectionResetError: [WinError 10054] An existing connection was forcibly closed by the remote host
2025-02-11T11:46:40.168703 - FETCH DATA from: C:\Users\chris\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfyui-manager\extension-node-map.json2025-02-11T11:46:40.168703 - 2025-02-11T11:46:40.173128 -  [DONE]2025-02-11T11:46:40.173128 - 
2025-02-11T11:46:40.850255 - FETCH ComfyRegistry Data: 10/332025-02-11T11:46:40.850255 - 
2025-02-11T11:46:44.306877 - FETCH ComfyRegistry Data: 15/332025-02-11T11:46:44.306877 - 
2025-02-11T11:46:47.585796 - FETCH ComfyRegistry Data: 20/332025-02-11T11:46:47.585796 - 
2025-02-11T11:46:50.984968 - FETCH ComfyRegistry Data: 25/332025-02-11T11:46:50.984968 - 
2025-02-11T11:46:54.673141 - FETCH ComfyRegistry Data: 30/332025-02-11T11:46:54.673141 - 
2025-02-11T11:46:57.147302 - FETCH ComfyRegistry Data [DONE]2025-02-11T11:46:57.147302 - 
2025-02-11T11:46:57.242059 - [ComfyUI-Manager] default cache updated: https://api.comfy.org/nodes
2025-02-11T11:46:57.353773 - nightly_channel: https://raw.githubusercontent.com/ltdrdata/ComfyUI-Manager/main/remote
2025-02-11T11:46:57.353773 - FETCH DATA from: https://raw.githubusercontent.com/ltdrdata/ComfyUI-Manager/main/custom-node-list.json2025-02-11T11:46:57.353773 - 2025-02-11T11:46:57.416531 -  [DONE]2025-02-11T11:46:57.417518 - 
2025-02-11T11:46:57.472223 - [ComfyUI-Manager] All startup tasks have been completed.
2025-02-11T11:47:05.161092 - got prompt
2025-02-11T11:47:05.163092 - Failed to validate prompt for output 136:
2025-02-11T11:47:05.164092 - * FromDetailerPipe_v2 153:
2025-02-11T11:47:05.164092 -   - Required input is missing: detailer_pipe
2025-02-11T11:47:05.164092 - Output will be ignored
2025-02-11T11:47:05.164092 - Failed to validate prompt for output 139:
2025-02-11T11:47:05.165091 - Output will be ignored
2025-02-11T11:47:05.165091 - Failed to validate prompt for output 138:
2025-02-11T11:47:05.165091 - Output will be ignored
2025-02-11T11:47:05.979528 - model weight dtype torch.float16, manual cast: None
2025-02-11T11:47:05.988701 - model_type EPS
2025-02-11T11:47:16.277828 - Using pytorch attention in VAE
2025-02-11T11:47:16.282556 - Using pytorch attention in VAE
2025-02-11T11:47:16.957921 - VAE load device: cuda:0, offload device: cpu, dtype: torch.bfloat16
2025-02-11T11:47:17.391136 - CLIP/text encoder model load device: cuda:0, offload device: cpu, current: cpu, dtype: torch.float16
2025-02-11T11:47:21.220025 - loaded diffusion model directly to GPU
2025-02-11T11:47:21.221023 - Requested to load SDXL
2025-02-11T11:47:21.289850 - loaded completely 9.5367431640625e+25 4897.0483474731445 True
2025-02-11T11:47:24.634596 - model weight dtype torch.float16, manual cast: None
2025-02-11T11:47:24.635591 - model_type EPS
2025-02-11T11:47:37.741627 - Using pytorch attention in VAE
2025-02-11T11:47:37.754858 - Using pytorch attention in VAE
2025-02-11T11:47:38.626466 - VAE load device: cuda:0, offload device: cpu, dtype: torch.bfloat16
2025-02-11T11:47:39.203344 - CLIP/text encoder model load device: cuda:0, offload device: cpu, current: cpu, dtype: torch.float16
2025-02-11T11:47:46.669591 - Token indices sequence length is longer than the specified maximum sequence length for this model (82 > 77). Running this sequence through the model will result in indexing errors
2025-02-11T11:47:46.673856 - Token indices sequence length is longer than the specified maximum sequence length for this model (82 > 77). Running this sequence through the model will result in indexing errors
2025-02-11T11:47:46.676851 - Requested to load SDXLClipModel
2025-02-11T11:47:48.885425 - loaded completely 1936.6140258789062 1560.802734375 True
2025-02-11T11:47:50.187304 - Requested to load SDXL
2025-02-11T11:48:45.642845 - loaded completely 5576.799950408936 4897.0483474731445 True
2025-02-11T11:48:50.359502 - 
100%|██████████████████████████████████████████████████████████████████████████████████| 12/12 [00:04<00:00,  4.77it/s]2025-02-11T11:48:50.362634 - 
100%|██████████████████████████████████████████████████████████████████████████████████| 12/12 [00:04<00:00,  2.82it/s]2025-02-11T11:48:50.362634 - 
2025-02-11T11:48:50.366764 - Requested to load AutoencoderKL
2025-02-11T11:48:51.496182 - loaded completely 202.0339477539062 159.55708122253418 True
2025-02-11T11:48:59.267407 - !!! Exception during processing !!! cannot import name 'BertConfig' from 'custom_mesh_graphormer.modeling.bert.modeling_bert' (C:\Users\chris\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfyui_controlnet_aux\src\custom_mesh_graphormer\modeling\bert\modeling_bert.py)
2025-02-11T11:48:59.274403 - Traceback (most recent call last):
  File "C:\Users\chris\ComfyUI_windows_portable\ComfyUI\execution.py", line 327, 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:\Users\chris\ComfyUI_windows_portable\ComfyUI\execution.py", line 202, 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:\Users\chris\ComfyUI_windows_portable\ComfyUI\execution.py", line 174, in _map_node_over_list
    process_inputs(input_dict, i)
  File "C:\Users\chris\ComfyUI_windows_portable\ComfyUI\execution.py", line 163, in process_inputs
    results.append(getattr(obj, func)(**inputs))
                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "C:\Users\chris\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfyui_controlnet_aux\node_wrappers\mesh_graphormer.py", line 64, in execute
    from custom_controlnet_aux.mesh_graphormer import MeshGraphormerDetector
  File "C:\Users\chris\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfyui_controlnet_aux\src\custom_controlnet_aux\mesh_graphormer\__init__.py", line 5, in <module>
    from custom_controlnet_aux.mesh_graphormer.pipeline import MeshGraphormerMediapipe, args
  File "C:\Users\chris\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfyui_controlnet_aux\src\custom_controlnet_aux\mesh_graphormer\pipeline.py", line 8, in <module>
    from custom_mesh_graphormer.modeling.bert import BertConfig, Graphormer
  File "C:\Users\chris\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfyui_controlnet_aux\src\custom_mesh_graphormer\modeling\bert\__init__.py", line 3, in <module>
    from .modeling_bert import (BertConfig, BertModel,
ImportError: cannot import name 'BertConfig' from 'custom_mesh_graphormer.modeling.bert.modeling_bert' (C:\Users\chris\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfyui_controlnet_aux\src\custom_mesh_graphormer\modeling\bert\modeling_bert.py)

2025-02-11T11:48:59.277560 - Prompt executed in 114.11 seconds

Attached Workflow

Please make sure that workflow does not contain any sensitive information such as API keys or passwords.

Workflow too large. Please manually upload the workflow from local file system.

Additional Context

(Please add any additional context or steps to reproduce the error here)

@michel-io
Copy link

i'm having the same problem here, this is the error that i get:

`
got prompt
!!! Exception during processing !!! cannot import name 'BertConfig' from 'custom_mesh_graphormer.modeling.bert.modeling_bert' (F:\ai\ComfyUI-Zluda\custom_nodes\comfyui_controlnet_aux\src\custom_mesh_graphormer\modeling\bert\modeling_bert.py)
Traceback (most recent call last):
File "F:\ai\ComfyUI-Zluda\execution.py", line 327, 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 "F:\ai\ComfyUI-Zluda\execution.py", line 202, 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 "F:\ai\ComfyUI-Zluda\execution.py", line 174, in map_node_over_list
process_inputs(input_dict, i)
File "F:\ai\ComfyUI-Zluda\execution.py", line 163, in process_inputs
results.append(getattr(obj, func)(**inputs))
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "F:\ai\ComfyUI-Zluda\custom_nodes\comfyui_controlnet_aux\node_wrappers\mesh_graphormer.py", line 64, in execute
from custom_controlnet_aux.mesh_graphormer import MeshGraphormerDetector
File "F:\ai\ComfyUI-Zluda\custom_nodes\comfyui_controlnet_aux\src\custom_controlnet_aux\mesh_graphormer_init
.py", line 5, in
from custom_controlnet_aux.mesh_graphormer.pipeline import MeshGraphormerMediapipe, args
File "F:\ai\ComfyUI-Zluda\custom_nodes\comfyui_controlnet_aux\src\custom_controlnet_aux\mesh_graphormer\pipeline.py", line 8, in
from custom_mesh_graphormer.modeling.bert import BertConfig, Graphormer
File "F:\ai\ComfyUI-Zluda\custom_nodes\comfyui_controlnet_aux\src\custom_mesh_graphormer\modeling\bert_init
.py", line 3, in
from .modeling_bert import (BertConfig, BertModel,
ImportError: cannot import name 'BertConfig' from 'custom_mesh_graphormer.modeling.bert.modeling_bert' (F:\ai\ComfyUI-Zluda\custom_nodes\comfyui_controlnet_aux\src\custom_mesh_graphormer\modeling\bert\modeling_bert.py)

Prompt executed in 0.92 seconds
`

i'm running the last comfyui-zluda, with these parameters:

`
** ComfyUI startup time: 2025-02-15 06:44:28.581
** Platform: Windows
** Python version: 3.11.9 (tags/v3.11.9:de54cf5, Apr 2 2024, 10:12:12) [MSC v.1938 64 bit (AMD64)]
** Python executable: F:\ai\ComfyUI-Zluda\venv\Scripts\python.exe
** ComfyUI Path: F:\ai\ComfyUI-Zluda
** ComfyUI Base Folder Path: F:\ai\ComfyUI-Zluda
** User directory: F:\ai\ComfyUI-Zluda\user
** ComfyUI-Manager config path: F:\ai\ComfyUI-Zluda\user\default\ComfyUI-Manager\config.ini
** Log path: F:\ai\ComfyUI-Zluda\user\comfyui.log

Prestartup times for custom nodes:
0.0 seconds: F:\ai\ComfyUI-Zluda\custom_nodes\rgthree-comfy
3.8 seconds: F:\ai\ComfyUI-Zluda\custom_nodes\ComfyUI-Manager

Warning, you are using an old pytorch version and some ckpt/pt files might be loaded unsafely. Upgrading to 2.4 or above is recommended.

----------------------ZLUDA-----------------------------
:: ZLUDA detected, disabling non-supported functions.
:: CuDNN, flash_sdp, math_sdp, mem_efficient_sdp disabled)
--------------------------------------------------------
:: Device: AMD Radeon RX 7600 XT [ZLUDA]

Total VRAM 16368 MB, total RAM 16306 MB
pytorch version: 2.3.0+cu118
Set vram state to: NORMAL_VRAM
Device: cuda:0 AMD Radeon RX 7600 XT [ZLUDA] : native
Using sub quadratic optimization for attention, if you have memory or speed issues try using: --use-split-cross-attention
ComfyUI version: 0.3.14
[Prompt Server] web root: F:\ai\ComfyUI-Zluda\web
[Recognize Anything] RAM models found: ram_plus_swin_large_14m.pth, ram_swin_large_14m.pth, tag2text_swin_14m.pth

Loading: ComfyUI-Impact-Pack (V8.8.1)

[Impact Pack] Wildcards loading done.

Loading: ComfyUI-Impact-Subpack (V1.2.9)

[Impact Subpack] ultralytics_bbox: F:\ai\ComfyUI-Zluda\models\ultralytics\bbox
[Impact Subpack] ultralytics_segm: F:\ai\ComfyUI-Zluda\models\ultralytics\segm

Loading: ComfyUI-Inspire-Pack (V1.13.1)

jjk_util loding

Loading: ComfyUI-Manager (V3.17.10)

ComfyUI Revision: 3583 [6f05ace0] | Released on '2025-02-14'

Openpose Editor Plus: Loaded
(pysssss:WD14Tagger) [DEBUG] Available ORT providers: AzureExecutionProvider, CPUExecutionProvider
(pysssss:WD14Tagger) [DEBUG] Using ORT providers: CUDAExecutionProvider, CPUExecutionProvider
[comfyui_controlnet_aux] | INFO -> Using ckpts path: F:\ai\ComfyUI-Zluda\custom_nodes\comfyui_controlnet_aux\ckpts
[comfyui_controlnet_aux] | INFO -> Using symlinks: False
[comfyui_controlnet_aux] | INFO -> Using ort providers: ['CUDAExecutionProvider', 'DirectMLExecutionProvider', 'OpenVINOExecutionProvider', 'ROCMExecutionProvider', 'CPUExecutionProvider', 'CoreMLExecutionProvider']

MACHINE DELUSIONS
TRAINER LOADED

Efficiency Nodes: Attempting to add Control Net options to the 'HiRes-Fix Script' Node (comfyui_controlnet_aux add-on)...Success!

[rgthree-comfy] Loaded 42 extraordinary nodes. 🎉

Import times for custom nodes:
0.0 seconds: F:\ai\ComfyUI-Zluda\custom_nodes\websocket_image_save.py
0.0 seconds: F:\ai\ComfyUI-Zluda\custom_nodes\sdxl-recommended-res-calc
0.0 seconds: F:\ai\ComfyUI-Zluda\custom_nodes\ComfyUI-deepcache
0.0 seconds: F:\ai\ComfyUI-Zluda\custom_nodes\Comfyui-flexi-lora-loader
0.0 seconds: F:\ai\ComfyUI-Zluda\custom_nodes\Image-Captioning-in-ComfyUI
0.0 seconds: F:\ai\ComfyUI-Zluda\custom_nodes\comfyui-lmstudio-image-to-text-node
0.0 seconds: F:\ai\ComfyUI-Zluda\custom_nodes\ComfyUI-Embedding_Picker
0.0 seconds: F:\ai\ComfyUI-Zluda\custom_nodes\lora-info
0.0 seconds: F:\ai\ComfyUI-Zluda\custom_nodes\comfyui_tag_fillter
0.0 seconds: F:\ai\ComfyUI-Zluda\custom_nodes\cg-use-everywhere
0.0 seconds: F:\ai\ComfyUI-Zluda\custom_nodes\ComfyUI_ADV_CLIP_emb
0.0 seconds: F:\ai\ComfyUI-Zluda\custom_nodes\ComfyUI_Noise
0.0 seconds: F:\ai\ComfyUI-Zluda\custom_nodes\ComfyUI-Jjk-Nodes
0.0 seconds: F:\ai\ComfyUI-Zluda\custom_nodes\ComfyUI-Nader-Tagging
0.0 seconds: F:\ai\ComfyUI-Zluda\custom_nodes\ComfyUI-Openpose-Editor-Plus
0.0 seconds: F:\ai\ComfyUI-Zluda\custom_nodes\ComfyUI_IPAdapter_plus
0.0 seconds: F:\ai\ComfyUI-Zluda\custom_nodes\ComfyUI-WD14-Tagger
0.0 seconds: F:\ai\ComfyUI-Zluda\custom_nodes\ComfyUI_FL-Trainer
0.0 seconds: F:\ai\ComfyUI-Zluda\custom_nodes\ComfyUI-Custom-Scripts
0.0 seconds: F:\ai\ComfyUI-Zluda\custom_nodes\ComfyUI_UltimateSDUpscale
0.0 seconds: F:\ai\ComfyUI-Zluda\custom_nodes\ComfyUI_essentials
0.0 seconds: F:\ai\ComfyUI-Zluda\custom_nodes\efficiency-nodes-comfyui
0.0 seconds: F:\ai\ComfyUI-Zluda\custom_nodes\ComfyUI-GGUF
0.0 seconds: F:\ai\ComfyUI-Zluda\custom_nodes\rgthree-comfy
0.0 seconds: F:\ai\ComfyUI-Zluda\custom_nodes\comfyui_controlnet_aux
0.1 seconds: F:\ai\ComfyUI-Zluda\custom_nodes\ComfyUI-Inspire-Pack
0.1 seconds: F:\ai\ComfyUI-Zluda\custom_nodes\ComfyUI_smZNodes
0.1 seconds: F:\ai\ComfyUI-Zluda\custom_nodes\ComfyUI-Impact-Pack
0.1 seconds: F:\ai\ComfyUI-Zluda\custom_nodes\ComfyUI-Flowty-LDSR
0.6 seconds: F:\ai\ComfyUI-Zluda\custom_nodes\comfy_PoP
0.7 seconds: F:\ai\ComfyUI-Zluda\custom_nodes\ComfyUI-Impact-Subpack
0.8 seconds: F:\ai\ComfyUI-Zluda\custom_nodes\ComfyUI-Manager
0.8 seconds: F:\ai\ComfyUI-Zluda\custom_nodes\ComfyUI-Hangover-Recognize_Anything
`

please help here!

@Hun73rdk
Copy link

I have not even touched anything and suddenly got that error and cant even fix it not even with solutions in here

@vipcxj
Copy link

vipcxj commented Mar 3, 2025

same issue, is this project dead?

@Hun73rdk
Copy link

Hun73rdk commented Mar 3, 2025

Solution is here #502 (comment)

@Iliria09
Copy link

I have the same problem here, I try everything that is written here so.. don't know;/

ComfyUI Error Report

Error Details

  • Node ID: 182
  • Node Type: MeshGraphormer-DepthMapPreprocessor
  • Exception Type: ImportError
  • Exception Message: cannot import name 'BertConfig' from 'custom_mesh_graphormer.modeling.bert.modeling_bert' (I:\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfyui_controlnet_aux\src\custom_mesh_graphormer\modeling\bert\modeling_bert.py)

Stack Trace

  File "I:\ComfyUI_windows_portable\ComfyUI\execution.py", line 327, 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 "I:\ComfyUI_windows_portable\ComfyUI\execution.py", line 202, 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 "I:\ComfyUI_windows_portable\ComfyUI\execution.py", line 174, in _map_node_over_list
    process_inputs(input_dict, i)

  File "I:\ComfyUI_windows_portable\ComfyUI\execution.py", line 163, in process_inputs
    results.append(getattr(obj, func)(**inputs))
                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^

  File "I:\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfyui_controlnet_aux\node_wrappers\mesh_graphormer.py", line 64, in execute
    from custom_controlnet_aux.mesh_graphormer import MeshGraphormerDetector

  File "I:\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfyui_controlnet_aux\src\custom_controlnet_aux\mesh_graphormer\__init__.py", line 5, in <module>
    from custom_controlnet_aux.mesh_graphormer.pipeline import MeshGraphormerMediapipe, args

  File "I:\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfyui_controlnet_aux\src\custom_controlnet_aux\mesh_graphormer\pipeline.py", line 8, in <module>
    from custom_mesh_graphormer.modeling.bert import BertConfig, Graphormer

  File "I:\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfyui_controlnet_aux\src\custom_mesh_graphormer\modeling\bert\__init__.py", line 3, in <module>
    from .modeling_bert import (BertConfig, BertModel,

System Information

  • ComfyUI Version: 0.3.18
  • Arguments: ComfyUI\main.py
  • OS: nt
  • Python Version: 3.12.8 (tags/v3.12.8:2dc476b, Dec 3 2024, 19:30:04) [MSC v.1942 64 bit (AMD64)]
  • Embedded Python: true
  • PyTorch Version: 2.6.0+cu126

Devices

  • Name: cuda:0 NVIDIA GeForce RTX 3080 : cudaMallocAsync
    • Type: cuda
    • VRAM Total: 10736893952
    • VRAM Free: 5994388594
    • Torch VRAM Total: 3556769792
    • Torch VRAM Free: 138091634

Logs

2025-03-10T18:08:24.188123 - [START] Security scan2025-03-10T18:08:24.188123 - 
2025-03-10T18:08:25.041121 - [DONE] Security scan2025-03-10T18:08:25.041121 - 
2025-03-10T18:08:25.136121 - ## ComfyUI-Manager: installing dependencies done.2025-03-10T18:08:25.136121 - 
2025-03-10T18:08:25.136121 - ** ComfyUI startup time:2025-03-10T18:08:25.136121 -  2025-03-10T18:08:25.137122 - 2025-03-10 18:08:25.1362025-03-10T18:08:25.137122 - 
2025-03-10T18:08:25.137122 - ** Platform:2025-03-10T18:08:25.137122 -  2025-03-10T18:08:25.137122 - Windows2025-03-10T18:08:25.137122 - 
2025-03-10T18:08:25.137122 - ** Python version:2025-03-10T18:08:25.137122 -  2025-03-10T18:08:25.137122 - 3.12.8 (tags/v3.12.8:2dc476b, Dec  3 2024, 19:30:04) [MSC v.1942 64 bit (AMD64)]2025-03-10T18:08:25.137122 - 
2025-03-10T18:08:25.137122 - ** Python executable:2025-03-10T18:08:25.138121 -  2025-03-10T18:08:25.138121 - I:\ComfyUI_windows_portable\python_embeded\python.exe2025-03-10T18:08:25.138121 - 
2025-03-10T18:08:25.138121 - ** ComfyUI Path:2025-03-10T18:08:25.138121 -  2025-03-10T18:08:25.138121 - I:\ComfyUI_windows_portable\ComfyUI2025-03-10T18:08:25.138121 - 
2025-03-10T18:08:25.138121 - ** ComfyUI Base Folder Path:2025-03-10T18:08:25.138121 -  2025-03-10T18:08:25.138121 - I:\ComfyUI_windows_portable\ComfyUI2025-03-10T18:08:25.138121 - 
2025-03-10T18:08:25.138121 - ** User directory:2025-03-10T18:08:25.138121 -  2025-03-10T18:08:25.138121 - I:\ComfyUI_windows_portable\ComfyUI\user2025-03-10T18:08:25.138121 - 
2025-03-10T18:08:25.138121 - ** ComfyUI-Manager config path:2025-03-10T18:08:25.138121 -  2025-03-10T18:08:25.138121 - I:\ComfyUI_windows_portable\ComfyUI\user\default\ComfyUI-Manager\config.ini2025-03-10T18:08:25.138121 - 
2025-03-10T18:08:25.138121 - ** Log path:2025-03-10T18:08:25.139121 -  2025-03-10T18:08:25.139121 - I:\ComfyUI_windows_portable\ComfyUI\user\comfyui.log2025-03-10T18:08:25.139121 - 
2025-03-10T18:08:26.209120 - 
Prestartup times for custom nodes:
2025-03-10T18:08:26.209120 -    0.0 seconds: I:\ComfyUI_windows_portable\ComfyUI\custom_nodes\rgthree-comfy
2025-03-10T18:08:26.210121 -    2.6 seconds: I:\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-Manager
2025-03-10T18:08:26.210121 - 
2025-03-10T18:08:27.601118 - Checkpoint files will always be loaded safely.
2025-03-10T18:08:27.701730 - Total VRAM 10240 MB, total RAM 65378 MB
2025-03-10T18:08:27.701730 - pytorch version: 2.6.0+cu126
2025-03-10T18:08:27.703730 - Set vram state to: NORMAL_VRAM
2025-03-10T18:08:27.703730 - Device: cuda:0 NVIDIA GeForce RTX 3080 : cudaMallocAsync
2025-03-10T18:08:28.721728 - Using pytorch attention
2025-03-10T18:08:29.788727 - ComfyUI version: 0.3.18
2025-03-10T18:08:29.818727 - [Prompt Server] web root: I:\ComfyUI_windows_portable\ComfyUI\web
2025-03-10T18:08:30.523844 - [Crystools �[0;32mINFO�[0m] Crystools version: 1.22.0
2025-03-10T18:08:30.545845 - [Crystools �[0;32mINFO�[0m] CPU: 12th Gen Intel(R) Core(TM) i7-12700KF - Arch: AMD64 - OS: Windows 10
2025-03-10T18:08:30.552844 - [Crystools �[0;32mINFO�[0m] Pynvml (Nvidia) initialized.
2025-03-10T18:08:30.552844 - [Crystools �[0;32mINFO�[0m] GPU/s:
2025-03-10T18:08:30.566133 - [Crystools �[0;32mINFO�[0m] 0) NVIDIA GeForce RTX 3080
2025-03-10T18:08:30.566133 - [Crystools �[0;32mINFO�[0m] NVIDIA Driver: 572.42
2025-03-10T18:08:30.585093 - ### Loading: ComfyUI-Impact-Pack (V8.8.4)2025-03-10T18:08:30.585093 - 
2025-03-10T18:08:30.667094 - [Impact Pack] Wildcards loading done.2025-03-10T18:08:30.667094 - 
2025-03-10T18:08:30.673093 - ### Loading: ComfyUI-Impact-Subpack (V1.2.9)
2025-03-10T18:08:31.005093 - [Impact Subpack] ultralytics_bbox: I:\ComfyUI_windows_portable\ComfyUI\models\ultralytics\bbox
2025-03-10T18:08:31.005093 - [Impact Subpack] ultralytics_segm: I:\ComfyUI_windows_portable\ComfyUI\models\ultralytics\segm
2025-03-10T18:08:31.011093 - ### Loading: ComfyUI-Manager (V3.27.3)
2025-03-10T18:08:31.012093 - [ComfyUI-Manager] network_mode: public
2025-03-10T18:08:31.111093 - ### ComfyUI Revision: 3183 [b07f116d] *DETACHED | Released on '2025-02-26'
2025-03-10T18:08:31.340092 - Workspace manager - Openning file hash dict2025-03-10T18:08:31.340092 - 
2025-03-10T18:08:31.341250 - 🦄🦄Loading: Workspace Manager (V2.1.0)2025-03-10T18:08:31.341250 - 
2025-03-10T18:08:31.354092 - [ComfyUI-Manager] default cache updated: https://raw.githubusercontent.com/ltdrdata/ComfyUI-Manager/main/model-list.json
2025-03-10T18:08:31.354092 - [ComfyUI-Manager] default cache updated: https://raw.githubusercontent.com/ltdrdata/ComfyUI-Manager/main/alter-list.json
2025-03-10T18:08:31.378092 - [ComfyUI-Manager] default cache updated: https://raw.githubusercontent.com/ltdrdata/ComfyUI-Manager/main/extension-node-map.json
2025-03-10T18:08:31.389198 - [ComfyUI-Manager] default cache updated: https://raw.githubusercontent.com/ltdrdata/ComfyUI-Manager/main/github-stats.json
2025-03-10T18:08:31.412093 - ------------------------------------------2025-03-10T18:08:31.412093 - 
2025-03-10T18:08:31.412093 - �[34mComfyroll Studio v1.76 : �[92m 175 Nodes Loaded�[0m2025-03-10T18:08:31.413093 - 
2025-03-10T18:08:31.413093 - ------------------------------------------2025-03-10T18:08:31.414092 - 
2025-03-10T18:08:31.414092 - ** For changes, please see patch notes at https://github.com/Suzie1/ComfyUI_Comfyroll_CustomNodes/blob/main/Patch_Notes.md2025-03-10T18:08:31.414092 - 
2025-03-10T18:08:31.414092 - ** For help, please see the wiki at https://github.com/Suzie1/ComfyUI_Comfyroll_CustomNodes/wiki2025-03-10T18:08:31.415092 - 
2025-03-10T18:08:31.415092 - ------------------------------------------2025-03-10T18:08:31.415092 - 
2025-03-10T18:08:31.415092 - [ComfyUI-Manager] default cache updated: https://raw.githubusercontent.com/ltdrdata/ComfyUI-Manager/main/custom-node-list.json
2025-03-10T18:08:31.434092 - �[36;20m[comfyui_controlnet_aux] | INFO -> Using ckpts path: I:\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfyui_controlnet_aux\ckpts�[0m
2025-03-10T18:08:31.434092 - �[36;20m[comfyui_controlnet_aux] | INFO -> Using symlinks: False�[0m
2025-03-10T18:08:31.435127 - �[36;20m[comfyui_controlnet_aux] | INFO -> Using ort providers: ['CUDAExecutionProvider', 'DirectMLExecutionProvider', 'OpenVINOExecutionProvider', 'ROCMExecutionProvider', 'CPUExecutionProvider', 'CoreMLExecutionProvider']�[0m
2025-03-10T18:08:31.531060 - I:\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfyui_controlnet_aux\node_wrappers\dwpose.py:26: UserWarning: DWPose: Onnxruntime not found or doesn't come with acceleration providers, switch to OpenCV with CPU device. DWPose might run very slowly
  warnings.warn("DWPose: Onnxruntime not found or doesn't come with acceleration providers, switch to OpenCV with CPU device. DWPose might run very slowly")
2025-03-10T18:08:32.208097 - I:\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfy_controlnet_preprocessors\v11\oneformer\oneformer\modeling\pixel_decoder\msdeformattn.py:314: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.
  @autocast(enabled=False)
2025-03-10T18:08:32.791096 - 
2025-03-10T18:08:32.791096 - �[92m[rgthree-comfy] Loaded 42 fantastic nodes. 🎉�[00m2025-03-10T18:08:32.792096 - 
2025-03-10T18:08:32.792096 - 
2025-03-10T18:08:32.793096 - 
Import times for custom nodes:
2025-03-10T18:08:32.793096 -    0.0 seconds: I:\ComfyUI_windows_portable\ComfyUI\custom_nodes\websocket_image_save.py
2025-03-10T18:08:32.793096 -    0.0 seconds: I:\ComfyUI_windows_portable\ComfyUI\custom_nodes\cg-use-everywhere
2025-03-10T18:08:32.793096 -    0.0 seconds: I:\ComfyUI_windows_portable\ComfyUI\custom_nodes\mangonodepack
2025-03-10T18:08:32.794096 -    0.0 seconds: I:\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfyui-image-saver
2025-03-10T18:08:32.794096 -    0.0 seconds: I:\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfyui-custom-scripts
2025-03-10T18:08:32.794096 -    0.0 seconds: I:\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-Advanced-ControlNet
2025-03-10T18:08:32.794096 -    0.0 seconds: I:\ComfyUI_windows_portable\ComfyUI\custom_nodes\rgthree-comfy
2025-03-10T18:08:32.794096 -    0.0 seconds: I:\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfyui-workspace-manager
2025-03-10T18:08:32.794096 -    0.1 seconds: I:\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI_Comfyroll_CustomNodes
2025-03-10T18:08:32.794096 -    0.1 seconds: I:\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfyui-impact-pack
2025-03-10T18:08:32.794096 -    0.2 seconds: I:\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfyui_controlnet_aux
2025-03-10T18:08:32.794096 -    0.3 seconds: I:\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-Manager
2025-03-10T18:08:32.794096 -    0.3 seconds: I:\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfyui-impact-subpack
2025-03-10T18:08:32.795096 -    0.4 seconds: I:\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-Crystools
2025-03-10T18:08:32.795096 -    0.5 seconds: I:\ComfyUI_windows_portable\ComfyUI\custom_nodes\image_control
2025-03-10T18:08:32.795096 -    0.6 seconds: I:\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfy_controlnet_preprocessors
2025-03-10T18:08:32.795096 - 
2025-03-10T18:08:32.806097 - Starting server

2025-03-10T18:08:32.807096 - To see the GUI go to: http://127.0.0.1:8188
2025-03-10T18:08:33.800108 - FETCH ComfyRegistry Data: 5/572025-03-10T18:08:33.800108 - 
2025-03-10T18:08:36.659902 - FETCH ComfyRegistry Data: 10/572025-03-10T18:08:36.659902 - 
2025-03-10T18:08:39.510929 - FETCH ComfyRegistry Data: 15/572025-03-10T18:08:39.511930 - 
2025-03-10T18:08:42.385880 - FETCH ComfyRegistry Data: 20/572025-03-10T18:08:42.385880 - 
2025-03-10T18:08:45.550300 - FETCH ComfyRegistry Data: 25/572025-03-10T18:08:45.550300 - 
2025-03-10T18:08:48.419188 - FETCH ComfyRegistry Data: 30/572025-03-10T18:08:48.420188 - 
2025-03-10T18:08:50.999388 - got prompt
2025-03-10T18:08:51.165388 - Failed to validate prompt for output 178:
2025-03-10T18:08:51.166388 - * UltralyticsDetectorProvider 183:
2025-03-10T18:08:51.166388 -   - Value not in list: model_name: 'bbox/hand_yolov8s.pt' not in []
2025-03-10T18:08:51.166388 - Output will be ignored
2025-03-10T18:08:51.167389 - Failed to validate prompt for output 186:
2025-03-10T18:08:51.167389 - * ControlNetLoader 180:
2025-03-10T18:08:51.167389 -   - Value not in list: control_net_name: 'control_sd15_inpaint_depth_hand_fp16.safetensors' not in ['OpenPoseXL2.safetensors', 'control-lora-canny-rank256.safetensors', 'control_v11p_sd15_openpose.pth', 'controlnet-sd-xl-1.0-softedge-dexined.safetensors', 'controlnet_inpaintDepthHandFp16.safetensors', 'depth-zoe-xl-v1.0-controlnet.safetensors']
2025-03-10T18:08:51.167389 - Output will be ignored
2025-03-10T18:08:51.167389 - Failed to validate prompt for output 177:
2025-03-10T18:08:51.168388 - Output will be ignored
2025-03-10T18:08:51.352388 - FETCH ComfyRegistry Data: 35/572025-03-10T18:08:51.352388 - 
2025-03-10T18:08:51.506387 - model weight dtype torch.float16, manual cast: None
2025-03-10T18:08:51.507388 - model_type EPS
2025-03-10T18:08:54.110384 - Using pytorch attention in VAE
2025-03-10T18:08:54.111385 - Using pytorch attention in VAE
2025-03-10T18:08:54.200384 - FETCH ComfyRegistry Data: 40/572025-03-10T18:08:54.200384 - 
2025-03-10T18:08:54.276384 - VAE load device: cuda:0, offload device: cpu, dtype: torch.bfloat16
2025-03-10T18:08:54.378385 - CLIP/text encoder model load device: cuda:0, offload device: cpu, current: cpu, dtype: torch.float16
2025-03-10T18:08:55.905383 - Requested to load SDXLClipModel
2025-03-10T18:08:56.624381 - loaded completely 7653.8 1560.802734375 True
2025-03-10T18:08:56.912382 - Requested to load SDXL
2025-03-10T18:08:57.095381 - FETCH ComfyRegistry Data: 45/572025-03-10T18:08:57.095381 - 
2025-03-10T18:08:58.635379 - loaded completely 5978.99713973999 4897.0483474731445 True
2025-03-10T18:08:58.671380 - 
  0%|                                                                                           | 0/29 [00:00<?, ?it/s]2025-03-10T18:09:00.119377 - FETCH ComfyRegistry Data: 50/572025-03-10T18:09:00.119377 - 
2025-03-10T18:09:02.970530 - FETCH ComfyRegistry Data: 55/572025-03-10T18:09:02.971531 - 
2025-03-10T18:09:03.643530 - 
  3%|██▊                                                                                | 1/29 [00:04<02:19,  4.97s/it]2025-03-10T18:09:04.602415 - FETCH ComfyRegistry Data [DONE]2025-03-10T18:09:04.602415 - 
2025-03-10T18:09:04.657415 - [ComfyUI-Manager] default cache updated: https://api.comfy.org/nodes
2025-03-10T18:09:04.677836 - nightly_channel: https://raw.githubusercontent.com/ltdrdata/ComfyUI-Manager/main/remote
2025-03-10T18:09:04.678263 - FETCH DATA from: https://raw.githubusercontent.com/ltdrdata/ComfyUI-Manager/main/custom-node-list.json2025-03-10T18:09:04.678263 - 2025-03-10T18:09:04.727130 -  [DONE]2025-03-10T18:09:04.727130 - 
2025-03-10T18:09:04.757984 - [ComfyUI-Manager] All startup tasks have been completed.
2025-03-10T18:13:15.388828 - 
100%|██████████████████████████████████████████████████████████████████████████████████| 29/29 [04:16<00:00,  7.61s/it]2025-03-10T18:13:15.388828 - 
100%|██████████████████████████████████████████████████████████████████████████████████| 29/29 [04:16<00:00,  8.85s/it]2025-03-10T18:13:15.389828 - 
2025-03-10T18:13:15.390828 - Requested to load AutoencoderKL
2025-03-10T18:13:15.615526 - loaded completely 1079.3921508789062 159.55708122253418 True
2025-03-10T18:13:19.141724 - !!! Exception during processing !!! cannot import name 'BertConfig' from 'custom_mesh_graphormer.modeling.bert.modeling_bert' (I:\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfyui_controlnet_aux\src\custom_mesh_graphormer\modeling\bert\modeling_bert.py)
2025-03-10T18:13:19.142724 - Traceback (most recent call last):
  File "I:\ComfyUI_windows_portable\ComfyUI\execution.py", line 327, 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 "I:\ComfyUI_windows_portable\ComfyUI\execution.py", line 202, 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 "I:\ComfyUI_windows_portable\ComfyUI\execution.py", line 174, in _map_node_over_list
    process_inputs(input_dict, i)
  File "I:\ComfyUI_windows_portable\ComfyUI\execution.py", line 163, in process_inputs
    results.append(getattr(obj, func)(**inputs))
                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "I:\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfyui_controlnet_aux\node_wrappers\mesh_graphormer.py", line 64, in execute
    from custom_controlnet_aux.mesh_graphormer import MeshGraphormerDetector
  File "I:\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfyui_controlnet_aux\src\custom_controlnet_aux\mesh_graphormer\__init__.py", line 5, in <module>
    from custom_controlnet_aux.mesh_graphormer.pipeline import MeshGraphormerMediapipe, args
  File "I:\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfyui_controlnet_aux\src\custom_controlnet_aux\mesh_graphormer\pipeline.py", line 8, in <module>
    from custom_mesh_graphormer.modeling.bert import BertConfig, Graphormer
  File "I:\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfyui_controlnet_aux\src\custom_mesh_graphormer\modeling\bert\__init__.py", line 3, in <module>
    from .modeling_bert import (BertConfig, BertModel,
ImportError: cannot import name 'BertConfig' from 'custom_mesh_graphormer.modeling.bert.modeling_bert' (I:\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfyui_controlnet_aux\src\custom_mesh_graphormer\modeling\bert\modeling_bert.py)

2025-03-10T18:13:19.144724 - Prompt executed in 267.97 seconds

Attached Workflow

Please make sure that workflow does not contain any sensitive information such as API keys or passwords.

Workflow too large. Please manually upload the workflow from local file system.

Additional Context

(Please add any additional context or steps to reproduce the error here)

Image

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests