diff --git a/CHANGELOG.md b/CHANGELOG.md index 418da7701..3bbb932a8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Change Log for SD.Next -## Update for 2025-04-19 +## Update for 2025-04-20 - **Features** - [Nunchaku](https://github.com/mit-han-lab/nunchaku) inference engine with custom **SVDQuant** 4-bit execution diff --git a/modules/ui_models.py b/modules/ui_models.py index 32708fa41..76585a9e7 100644 --- a/modules/ui_models.py +++ b/modules/ui_models.py @@ -304,7 +304,7 @@ def create_ui(): gr.HTML('

 Replace model components

') with gr.Row(): with gr.Column(scale=3): - model_type = gr.Dropdown(label="Model type", choices=['sd15', 'sdxl', 'sd21', 'sd35', 'flux.1'], value='sdxl', interactive=False) + model_type = gr.Dropdown(label="Base model type", choices=['sd15', 'sdxl', 'sd21', 'sd35', 'flux.1'], value='sdxl', interactive=False) with gr.Column(scale=5): with gr.Row(): model_name = gr.Dropdown(sd_models.checkpoint_titles(), label="Input model")