Skip to content

Commit

Permalink
Add help messages to the SDXL finetune UI.
Browse files Browse the repository at this point in the history
  • Loading branch information
RyanJDick committed May 21, 2024
1 parent 399c130 commit 654bba1
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -49,11 +49,15 @@ def __init__(self):
self.base_pipeline_config_group = BasePipelineConfigGroup()
self.save_checkpoint_format = gr.Dropdown(
label="Checkpoint Format",
info="The save format for the checkpoints. `full_diffusers` saves the full model in diffusers "
"format. `trained_only_diffusers` saves only the parts of the model that were finetuned "
"(i.e. the UNet).",
choices=get_typing_literal_options(SdxlFinetuneConfig, "save_checkpoint_format"),
interactive=True,
)
self.save_dtype = gr.Dropdown(
label="Save Dtype",
info="The dtype to use when saving the model.",
choices=get_typing_literal_options(SdxlFinetuneConfig, "save_dtype"),
interactive=True,
)
Expand Down

0 comments on commit 654bba1

Please sign in to comment.