diffusers: Dreambooth won't start: [00:51:51] WARNING The following values were not passed to

Describe the bug

Getting this whenever I run train_dreambooth.py on Colab but it won’t get passed it, it seems to freeze up and just run and not do anything with this warning and the cursor keeps blinking, until you stop the cell, then it just stops immediately when you try to run it after that. It has always worked before, and no changes on my end. Think it might be an issue with accelerate. Have no other info.

Reproduction

[00:51:51] WARNING The following values were not passed to

Logs

[00:51:51] WARNING  The following values were not passed to

System Info

Colab notebook

About this issue

  • Original URL
  • State: closed
  • Created a year ago
  • Comments: 19 (1 by maintainers)

Most upvoted comments

The display issue appears to be specific to the use of accelerate launch. I was able to bypass it by changing this:

!accelerate launch train_dreambooth.py

to:

!/usr/bin/python3 train_dreambooth.py

Will confirm that this seems directly tied to accelerate launch. Using you your above changes it does indeed return the display and seems to work as normal.

Thanks for sharing your solution, hntrssthmpsn

The display issue appears to be specific to the use of accelerate launch. I was able to bypass it by changing this:

!accelerate launch train_dreambooth.py

to:

!/usr/bin/python3 train_dreambooth.py