-
Notifications
You must be signed in to change notification settings - Fork 5.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
create a script to train autoencoderkl #10605
Merged
Merged
Changes from all commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
cf94b6a
create a script to train vae
lavinal712 dd3a0a3
update main.py
lavinal712 16e6786
Merge branch 'main' into main
sayakpaul cdee155
update train_autoencoderkl.py
lavinal712 f37ffa7
update train_autoencoderkl.py
lavinal712 93c62c9
update train_autoencoderkl.py
lavinal712 dafd929
add a check of --pretrained_model_name_or_path and --model_config_nam…
lavinal712 041bdfb
Merge branch 'main' into main
sayakpaul 80d3979
remove the comment, remove diffusers in requiremnets.txt, add validat…
lavinal712 a636841
remove the comment, remove diffusers in requiremnets.txt, add validat…
lavinal712 dfb9e37
Merge branch 'main' into main
lavinal712 ceec5f3
Merge branch 'main' into main
sayakpaul ca62ba8
update autoencoderkl.py
lavinal712 e5f63bf
Merge branch 'main' into main
lavinal712 2e348b8
quality
sayakpaul File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
# AutoencoderKL training example | ||
|
||
## Installing the dependencies | ||
|
||
Before running the scripts, make sure to install the library's training dependencies: | ||
|
||
**Important** | ||
|
||
To make sure you can successfully run the latest versions of the example scripts, we highly recommend **installing from source** and keeping the install up to date as we update the example scripts frequently and install some example-specific requirements. To do this, execute the following steps in a new virtual environment: | ||
```bash | ||
git clone https://github.com/huggingface/diffusers | ||
cd diffusers | ||
pip install . | ||
``` | ||
|
||
Then cd in the example folder and run | ||
```bash | ||
pip install -r requirements.txt | ||
``` | ||
|
||
|
||
And initialize an [🤗Accelerate](https://github.com/huggingface/accelerate/) environment with: | ||
|
||
```bash | ||
accelerate config | ||
``` | ||
|
||
## Training on CIFAR10 | ||
|
||
Please replace the validation image with your own image. | ||
|
||
```bash | ||
accelerate launch train_autoencoderkl.py \ | ||
--pretrained_model_name_or_path stabilityai/sd-vae-ft-mse \ | ||
--dataset_name=cifar10 \ | ||
--image_column=img \ | ||
--validation_image images/bird.jpg images/car.jpg images/dog.jpg images/frog.jpg \ | ||
--num_train_epochs 100 \ | ||
--gradient_accumulation_steps 2 \ | ||
--learning_rate 4.5e-6 \ | ||
--lr_scheduler cosine \ | ||
--report_to wandb \ | ||
``` | ||
|
||
## Training on ImageNet | ||
|
||
```bash | ||
accelerate launch train_autoencoderkl.py \ | ||
--pretrained_model_name_or_path stabilityai/sd-vae-ft-mse \ | ||
--num_train_epochs 100 \ | ||
--gradient_accumulation_steps 2 \ | ||
--learning_rate 4.5e-6 \ | ||
--lr_scheduler cosine \ | ||
--report_to wandb \ | ||
--mixed_precision bf16 \ | ||
--train_data_dir /path/to/ImageNet/train \ | ||
--validation_image ./image.png \ | ||
--decoder_only | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
accelerate>=0.16.0 | ||
bitsandbytes | ||
datasets | ||
huggingface_hub | ||
lpips | ||
numpy | ||
packaging | ||
Pillow | ||
taming_transformers | ||
torch | ||
torchvision | ||
tqdm | ||
transformers | ||
wandb | ||
xformers |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Users won't know about these images. Maybe add a note?