Giter VIP home page Giter VIP logo

Comments (9)

nupurkmr9 avatar nupurkmr9 commented on August 15, 2024 2

Hi,
I have updated the diffusers code with the updated version i.e. 0.14.0. I still need to try it on all the datasets, but qualitatively it looks to have somewhat similar results.
Thanks!

from custom-diffusion.

nupurkmr9 avatar nupurkmr9 commented on August 15, 2024

Hi, thanks a lot for looking into it. It's quite interesting that even with the new_forward in the updated diffusers version, the quality is not the same and requires longer training.
I also plan to work on making our code compatible with the new diffusers version.
I will post any findings here.

from custom-diffusion.

dome272 avatar dome272 commented on August 15, 2024

Any updates on this?

from custom-diffusion.

eps696 avatar eps696 commented on August 15, 2024

thank you for updating the code!
current tests look promising, and xformers support makes it back on track memory- and speed-wise.

from custom-diffusion.

arushijain71 avatar arushijain71 commented on August 15, 2024

When I ran the custom diffusion code with diffusers 0.22.0. I am getting following error:

Steps: 100%|██████████| 250/250 [04:12<00:00,  1.05it/s, loss=1.03, lr=4e-5]
�Traceback (most recent call last):
  File "/workspace/customdiffusion/diffusers/examples/custom_diffusion/train_custom_diffusion.py", line 1340, in <module>
    main(args)
  File "/workspace/customdiffusion/diffusers/examples/custom_diffusion/train_custom_diffusion.py", line 1268, in main
    unet.save_attn_procs(args.output_dir, safe_serialization=not args.no_safe_serialization)
  File "/workspace/customdiffusion/diffusers/src/diffusers/loaders.py", line 674, in save_attn_procs
    save_function(state_dict, os.path.join(save_directory, weight_name))
  File "/workspace/customdiffusion/diffusers/src/diffusers/loaders.py", line 630, in save_function
    return safetensors.torch.save_file(weights, filename, metadata={"format": "pt"})
  File "/opt/conda/lib/python3.8/site-packages/safetensors/torch.py", line 281, in save_file
    serialize_file(_flatten(tensors), filename, metadata=metadata)
  File "/opt/conda/lib/python3.8/site-packages/safetensors/torch.py", line 449, in _flatten
    raise ValueError(f"Key `{k}` is invalid, expected torch.Tensor but received {type(v)}")
ValueError: Key `down_blocks.0.attentions.0.transformer_blocks.0.attn1.processor` is invalid, expected torch.Tensor but received <class 'dict'>

I ran the code for single concept.
I even tried with diffusers version 0.16.0 but the error persists.
Is there specific version of diffusers for which custom-diffusion code will run?
Any help in resolving this error is highly appreciated.

from custom-diffusion.

nupurkmr9 avatar nupurkmr9 commented on August 15, 2024

Hi, I have updated our code for more recent diffusers version 0.21.4. Please let me know if you still face any issues. You can find the requirements here. Thanks!

from custom-diffusion.

arushijain71 avatar arushijain71 commented on August 15, 2024

Hi, I have updated our code for more recent diffusers version 0.21.4. Please let me know if you still face any issues. You can find the requirements here. Thanks!

Hi @nupurkmr9, thanks for specifying the requirements. Even after using the same versions (listed below) I am getting same error.

accelerate==0.24.1
torch==2.0.1
torchvision==0.15.2
transformers==4.31.0
diffusers==0.21.4

Following is the error:

Traceback (most recent call last):
  File "/workspace/customdiffusion/diffusers/examples/custom_diffusion/train_custom_diffusion.py", line 1332, in <module>
    main(args)
  File "/workspace/customdiffusion/diffusers/examples/custom_diffusion/train_custom_diffusion.py", line 1260, in main
    unet.save_attn_procs(args.output_dir, safe_serialization=not args.no_safe_serialization)
  File "/workspace/customdiffusion/diffusers/src/diffusers/loaders.py", line 634, in save_attn_procs
    save_function(state_dict, os.path.join(save_directory, weight_name))
  File "/workspace/customdiffusion/diffusers/src/diffusers/loaders.py", line 600, in save_function
    return safetensors.torch.save_file(weights, filename, metadata={"format": "pt"})
  File "/opt/conda/lib/python3.8/site-packages/safetensors/torch.py", line 281, in save_file
    serialize_file(_flatten(tensors), filename, metadata=metadata)
  File "/opt/conda/lib/python3.8/site-packages/safetensors/torch.py", line 449, in _flatten
    raise ValueError(f"Key `{k}` is invalid, expected torch.Tensor but received {type(v)}")
ValueError: Key `down_blocks.0.attentions.0.transformer_blocks.0.attn1.processor` is invalid, expected torch.Tensor but received <class 'dict'>

from custom-diffusion.

arushijain71 avatar arushijain71 commented on August 15, 2024

Hi, I have updated our code for more recent diffusers version 0.21.4. Please let me know if you still face any issues. You can find the requirements here. Thanks!

Hi @nupurkmr9, thanks for specifying the requirements. Even after using the same versions (listed below) I am getting same error.

accelerate==0.24.1
torch==2.0.1
torchvision==0.15.2
transformers==4.31.0
diffusers==0.21.4

Following is the error:

Traceback (most recent call last):
  File "/workspace/customdiffusion/diffusers/examples/custom_diffusion/train_custom_diffusion.py", line 1332, in <module>
    main(args)
  File "/workspace/customdiffusion/diffusers/examples/custom_diffusion/train_custom_diffusion.py", line 1260, in main
    unet.save_attn_procs(args.output_dir, safe_serialization=not args.no_safe_serialization)
  File "/workspace/customdiffusion/diffusers/src/diffusers/loaders.py", line 634, in save_attn_procs
    save_function(state_dict, os.path.join(save_directory, weight_name))
  File "/workspace/customdiffusion/diffusers/src/diffusers/loaders.py", line 600, in save_function
    return safetensors.torch.save_file(weights, filename, metadata={"format": "pt"})
  File "/opt/conda/lib/python3.8/site-packages/safetensors/torch.py", line 281, in save_file
    serialize_file(_flatten(tensors), filename, metadata=metadata)
  File "/opt/conda/lib/python3.8/site-packages/safetensors/torch.py", line 449, in _flatten
    raise ValueError(f"Key `{k}` is invalid, expected torch.Tensor but received {type(v)}")
ValueError: Key `down_blocks.0.attentions.0.transformer_blocks.0.attn1.processor` is invalid, expected torch.Tensor but received <class 'dict'>

So this is the issue of safe serialization, using --no_safe_serialization will resolve the issue.

from custom-diffusion.

hecoding avatar hecoding commented on August 15, 2024

Hi @nupurkmr9, great work.
Unfortunately, the code still fails merging concepts with src/diffusers_composenW.py.
Any update of that script would be much appreciated.

from custom-diffusion.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.