Skip to content

Commit d099997

Browse files
committed
Rename spandrel models to 'Image-to-Image Model' throughout the UI.
1 parent a405f14 commit d099997

File tree

5 files changed

+180
-226
lines changed

5 files changed

+180
-226
lines changed

invokeai/app/invocations/fields.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ class FieldDescriptions:
135135
sdxl_main_model = "SDXL Main model (UNet, VAE, CLIP1, CLIP2) to load"
136136
sdxl_refiner_model = "SDXL Refiner Main Modde (UNet, VAE, CLIP2) to load"
137137
onnx_main_model = "ONNX Main model (UNet, VAE, CLIP) to load"
138-
spandrel_image_to_image_model = "Spandrel Image-to-Image model"
138+
spandrel_image_to_image_model = "Image-to-Image model"
139139
lora_weight = "The weight at which the LoRA is applied to each model"
140140
compel_prompt = "Prompt to be parsed by Compel to create a conditioning tensor"
141141
raw_prompt = "Raw prompt text (no parsing)"

invokeai/app/invocations/spandrel_upscale.py

Lines changed: 0 additions & 47 deletions
This file was deleted.

invokeai/frontend/web/src/features/modelManagerV2/subpanels/ModelManagerPanel/ModelList.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -155,11 +155,11 @@ const ModelList = () => {
155155
)}
156156
{/* Spandrel Image to Image List */}
157157
{isLoadingSpandrelImageToImageModels && (
158-
<FetchingModelsLoader loadingMessage="Loading Spandrel Image to Image Models..." />
158+
<FetchingModelsLoader loadingMessage="Loading Image-to-Image Models..." />
159159
)}
160160
{!isLoadingSpandrelImageToImageModels && filteredSpandrelImageToImageModels.length > 0 && (
161161
<ModelListWrapper
162-
title="Spandrel Image to Image"
162+
title="Image-to-Image"
163163
modelList={filteredSpandrelImageToImageModels}
164164
key="spandrel-image-to-image"
165165
/>

invokeai/frontend/web/src/features/modelManagerV2/subpanels/ModelManagerPanel/ModelTypeFilter.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export const ModelTypeFilter = () => {
2121
t2i_adapter: t('common.t2iAdapter'),
2222
ip_adapter: t('common.ipAdapter'),
2323
clip_vision: 'Clip Vision',
24-
spandrel_image_to_image: 'Spandrel Image to Image',
24+
spandrel_image_to_image: 'Image-to-Image',
2525
}),
2626
[t]
2727
);

0 commit comments

Comments
 (0)