Kosinkadink / ComfyUI-AnimateDiff-Evolved

Improved AnimateDiff for ComfyUI and Advanced Sampling Support
Apache License 2.0
2.74k stars 208 forks source link

Error occurred when executing KSampler Adv. (Efficient): 'str' object has no attribute 'get_indexes #429

Closed guushenaichitang closed 3 months ago

guushenaichitang commented 3 months ago

Error occurred when executing KSampler Adv. (Efficient):

'str' object has no attribute 'get_indexes'

File "G:\AIGC\ComfyUI-aki-v1.3\execution.py", line 152, in recursive_execute output_data, output_ui = get_output_data(obj, input_data_all) File "G:\AIGC\ComfyUI-aki-v1.3\execution.py", line 82, in get_output_data return_values = map_node_over_list(obj, input_data_all, obj.FUNCTION, allow_interrupt=True) File "G:\AIGC\ComfyUI-aki-v1.3\execution.py", line 75, in map_node_over_list results.append(getattr(obj, func)(slice_dict(input_data_all, i))) File "G:\AIGC\ComfyUI-aki-v1.3\custom_nodes\efficiency-nodes-comfyui\efficiency_nodes.py", line 2225, in sample_adv return super().sample(model, noise_seed, steps, cfg, sampler_name, scheduler, positive, negative, File "G:\AIGC\ComfyUI-aki-v1.3\custom_nodes\efficiency-nodes-comfyui\efficiency_nodes.py", line 732, in sample samples, images, gifs, preview = process_latent_image(model, seed, steps, cfg, sampler_name, scheduler, File "G:\AIGC\ComfyUI-aki-v1.3\custom_nodes\efficiency-nodes-comfyui\efficiency_nodes.py", line 554, in process_latent_image samples = KSamplerAdvanced().sample(model, add_noise, seed, steps, cfg, sampler_name, scheduler, File "G:\AIGC\ComfyUI-aki-v1.3\nodes.py", line 1407, in sample return common_ksampler(model, noise_seed, steps, cfg, sampler_name, scheduler, positive, negative, latent_image, denoise=denoise, disable_noise=disable_noise, start_step=start_at_step, last_step=end_at_step, force_full_denoise=force_full_denoise) File "G:\AIGC\ComfyUI-aki-v1.3\nodes.py", line 1343, in common_ksampler samples = comfy.sample.sample(model, noise, steps, cfg, sampler_name, scheduler, positive, negative, latent_image, File "G:\AIGC\ComfyUI-aki-v1.3\custom_nodes\ComfyUI-Impact-Pack\modules\impact\sample_error_enhancer.py", line 9, in informative_sample return original_sample(*args, *kwargs) # This code helps interpret error messages that occur within exceptions but does not have any impact on other operations. File "G:\AIGC\ComfyUI-aki-v1.3\custom_nodes\ComfyUI-AnimateDiff-Evolved\animatediff\sampling.py", line 520, in motion_sample latents = orig_comfy_sample(model, noise, args, kwargs) File "G:\AIGC\ComfyUI-aki-v1.3\comfy\sample.py", line 43, in sample samples = sampler.sample(noise, positive, negative, cfg=cfg, latent_image=latent_image, start_step=start_step, last_step=last_step, force_full_denoise=force_full_denoise, denoise_mask=noise_mask, sigmas=sigmas, callback=callback, disable_pbar=disable_pbar, seed=seed) File "G:\AIGC\ComfyUI-aki-v1.3\comfy\samplers.py", line 829, in sample return sample(self.model, noise, positive, negative, cfg, self.device, sampler, sigmas, self.model_options, latent_image=latent_image, denoise_mask=denoise_mask, callback=callback, disable_pbar=disable_pbar, seed=seed) File "G:\AIGC\ComfyUI-aki-v1.3\comfy\samplers.py", line 729, in sample return cfg_guider.sample(noise, latent_image, sampler, sigmas, denoise_mask, callback, disable_pbar, seed) File "G:\AIGC\ComfyUI-aki-v1.3\comfy\samplers.py", line 716, in sample output = self.inner_sample(noise, latent_image, device, sampler, sigmas, denoise_mask, callback, disable_pbar, seed) File "G:\AIGC\ComfyUI-aki-v1.3\comfy\samplers.py", line 695, in inner_sample samples = sampler.sample(self, sigmas, extra_args, callback, noise, latent_image, denoise_mask, disable_pbar) File "G:\AIGC\ComfyUI-aki-v1.3\comfy\samplers.py", line 600, in sample samples = self.sampler_function(model_k, noise, sigmas, extra_args=extra_args, callback=k_callback, disable=disable_pbar, self.extra_options) File "G:\AIGC\ComfyUI-aki-v1.3\python\lib\site-packages\torch\utils_contextlib.py", line 115, in decorate_context return func(*args, *kwargs) File "G:\AIGC\ComfyUI-aki-v1.3\comfy\k_diffusion\sampling.py", line 160, in sample_euler_ancestral denoised = model(x, sigmas[i] s_in, extra_args) File "G:\AIGC\ComfyUI-aki-v1.3\comfy\samplers.py", line 299, in call out = self.inner_model(x, sigma, model_options=model_options, seed=seed) File "G:\AIGC\ComfyUI-aki-v1.3\comfy\samplers.py", line 682, in call return self.predict_noise(*args, **kwargs) File "G:\AIGC\ComfyUI-aki-v1.3\comfy\samplers.py", line 685, 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 "G:\AIGC\ComfyUI-aki-v1.3\custom_nodes\ComfyUI-AnimateDiff-Evolved\animatediff\sampling.py", line 627, in evolved_sampling_function cond_pred, uncond_pred = sliding_calc_condsbatch(model, [cond, uncond], x, timestep, model_options) File "G:\AIGC\ComfyUI-aki-v1.3\custom_nodes\ComfyUI-AnimateDiff-Evolved\animatediff\sampling.py", line 820, in sliding_calc_conds_batch sub_conds_out = calc_cond_uncond_batch_wrapper(model, sub_conds, sub_x, sub_timestep, model_options)

Kosinkadink commented 3 months ago

https://github.com/Kosinkadink/ComfyUI-Advanced-ControlNet/issues/117

Steerable-Motion issue with old Steerable-Motion workflows that is worked around with an update to Advanced-ControlNet. Update Advanced-ControlNet and it will let the outdated Steerable-Motion workflow you're trying to run work.

guushenaichitang commented 3 months ago

Kosinkadink/ComfyUI-Advanced-ControlNet#117

Steerable-Motion issue with old Steerable-Motion workflows that is worked around with an update to Advanced-ControlNet. Update Advanced-ControlNet and it will let the outdated Steerable-Motion workflow you're trying to run work.

Very helpful, thank you very much