Closed doogyhatts closed 1 year ago
Discovered a warning.
/usr/local/lib/python3.10/dist-packages/diffusers/models/attention_processor.py:1468: FutureWarning:
LoRAAttnProcessor2_0
is deprecated and will be removed in version 0.26.0. Make sure use AttnProcessor2_0 instead by settingLoRA layers toself.{to_q,to_k,to_v,to_out[0]}.lora_layer
respectively. This will be done automatically when usingLoraLoaderMixin.load_lora_weights
Hi thanks for your interests in our work and the information provided! Indeed, we recommend using the following command to ensure all configurations are aligned with ours:
We are using diffusers with version 0.17.1
Here is the conda version without any problem in the Google Colab.
!pip install -q condacolab
import condacolab
condacolab.install()
import sys
print(sys.executable)
!git clone https://github.com/Yujun-Shi/DragDiffusion.git
%cd /content/DragDiffusion
# fix cudatoolkit not found error
!sed -i '4 a \ \ - nvidia' environment.yaml
!sed -i '4 a \ \ - conda-forge' environment.yaml
!conda env create -f environment.yaml
!source /usr/local/etc/profile.d/conda.sh
!source activate dragdiff && pip install ipykernel && python -m ipykernel install --user && python drag_ui.py
Thank you! It works on Colab now!
I am running the Colab version. When it reaches: DDIM Sampler: 24% 12/50 [00:00<00:00, 256.90it/s]
The following error appeared.