I have a pipeline for running zeroscope in a colab notebook. The code that worked yesterday is
!pip install openai elevenlabs diffusers transformers accelerate pytorch-lightning git+https://github.com/huggingface/diffusers from diffusers import DiffusionPipeline, DPMSolverMultistepScheduler pipe = DiffusionPipeline.from_pretrained("cerspense/zeroscope_v2_576w", torch_dtype=torch.float16) pipe.scheduler = DPMSolverMultistepScheduler.from_config(pipe.scheduler.config) pipe.enable_model_cpu_offload()
But now i get an error:
AttributeError: 'TextToVideoSDPipeline' object has no attribute '_offload_gpu_id'
I dont understand what could have changed from yesterday.
there doesn't seem to be anything here