Closed imner0 closed 1 year ago
I've just tested this using the same model and it seems to work okay... So either the recent loader method changes have fixed the issue - or you may need to redownload the model.
let me know if its still not working for you
Error occurred when executing ttN pipeLoader:
Error while deserializing header: HeaderTooLarge
File "/content/ComfyUI/execution.py", line 151, in recursive_execute output_data, output_ui = get_output_data(obj, input_data_all) File "/content/ComfyUI/execution.py", line 81, in get_output_data return_values = map_node_over_list(obj, input_data_all, obj.FUNCTION, allow_interrupt=True) File "/content/ComfyUI/execution.py", line 74, in map_node_over_list results.append(getattr(obj, func)(**slice_dict(input_data_all, i))) File "/content/ComfyUI/custom_nodes/ComfyUI_tinyterraNodes/tinyterraNodes.py", line 944, in adv_pipeloader model, clip, vae = ttNcache.load_checkpoint(ckpt_name) File "/content/ComfyUI/custom_nodes/ComfyUI_tinyterraNodes/tinyterraNodes.py", line 179, in load_checkpoint loaded_ckpt = comfy.sd.load_checkpoint_guess_config(ckpt_path, output_vae=True, output_clip=True, embedding_directory=folder_paths.get_folder_paths("embeddings")) File "/content/ComfyUI/comfy/sd.py", line 1335, in load_checkpoint_guess_config sd = utils.load_torch_file(ckpt_path) File "/content/ComfyUI/comfy/utils.py", line 11, in load_torch_file sd = safetensors.torch.load_file(ckpt, device=device.type) File "/usr/local/lib/python3.10/dist-packages/safetensors/torch.py", line 308, in load_file with safe_open(filename, framework="pt", device=device) as f: