We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Loading Flux NF4 Inpainting Using gguf. Loading pipeline components...: 100%|████████████████████████████████████████████████████████| 1/1 [00:00<00:00, 305.44it/s] !!! Exception during processing !!! 'NoneType' object has no attribute 'config' Traceback (most recent call last): File "/Users/huhui/ai/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 "/Users/huhui/ai/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 "/Users/huhui/ai/ComfyUI/execution.py", line 174, in _map_node_over_list process_inputs(input_dict, i) File "/Users/huhui/ai/ComfyUI/execution.py", line 163, in process_inputs results.append(getattr(obj, func)(**inputs)) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/Users/huhui/ai/ComfyUI/custom_nodes/comfyui-flux-inpainting/nodes.py", line 448, in inpainting _pipeline = load_simple_flux_fill_gguf( ^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/Users/huhui/ai/ComfyUI/custom_nodes/comfyui-flux-inpainting/modules/load_util.py", line 120, in load_simple_flux_fill_gguf orig_pipeline = FluxFillPipeline.from_pretrained(flux_dir, torch_dtype=dtype, **exclude_sub_model_dict) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/Users/huhui/miniconda3/envs/comfyui/lib/python3.12/site-packages/huggingface_hub/utils/_validators.py", line 114, in _inner_fn return fn(*args, **kwargs) ^^^^^^^^^^^^^^^^^^^ File "/Users/huhui/miniconda3/envs/comfyui/lib/python3.12/site-packages/diffusers/pipelines/pipeline_utils.py", line 976, in from_pretrained model = pipeline_class(**init_kwargs) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/Users/huhui/ai/ComfyUI/custom_nodes/comfyui-flux-inpainting/modules/pipeline_flux_fill.py", line 238, in init vae_latent_channels=self.vae.config.latent_channels, ^^^^^^^^^^^^^^^ AttributeError: 'NoneType' object has no attribute 'config'
The text was updated successfully, but these errors were encountered:
@DivXPro This may be caused by a low diffusers version. Try upgrading to 0.32.0 and then try again
Sorry, something went wrong.
@DivXPro Oh, so sorry, It's my problem, we have fixed it
No branches or pull requests
Loading Flux NF4 Inpainting
Using gguf.
Loading pipeline components...: 100%|████████████████████████████████████████████████████████| 1/1 [00:00<00:00, 305.44it/s]
!!! Exception during processing !!! 'NoneType' object has no attribute 'config'
Traceback (most recent call last):
File "/Users/huhui/ai/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 "/Users/huhui/ai/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 "/Users/huhui/ai/ComfyUI/execution.py", line 174, in _map_node_over_list
process_inputs(input_dict, i)
File "/Users/huhui/ai/ComfyUI/execution.py", line 163, in process_inputs
results.append(getattr(obj, func)(**inputs))
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/Users/huhui/ai/ComfyUI/custom_nodes/comfyui-flux-inpainting/nodes.py", line 448, in inpainting
_pipeline = load_simple_flux_fill_gguf(
^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/Users/huhui/ai/ComfyUI/custom_nodes/comfyui-flux-inpainting/modules/load_util.py", line 120, in load_simple_flux_fill_gguf
orig_pipeline = FluxFillPipeline.from_pretrained(flux_dir, torch_dtype=dtype, **exclude_sub_model_dict)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/Users/huhui/miniconda3/envs/comfyui/lib/python3.12/site-packages/huggingface_hub/utils/_validators.py", line 114, in _inner_fn
return fn(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^
File "/Users/huhui/miniconda3/envs/comfyui/lib/python3.12/site-packages/diffusers/pipelines/pipeline_utils.py", line 976, in from_pretrained
model = pipeline_class(**init_kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/Users/huhui/ai/ComfyUI/custom_nodes/comfyui-flux-inpainting/modules/pipeline_flux_fill.py", line 238, in init
vae_latent_channels=self.vae.config.latent_channels,
^^^^^^^^^^^^^^^
AttributeError: 'NoneType' object has no attribute 'config'
The text was updated successfully, but these errors were encountered: