Skip to content

Commit

Permalink
fix(gui): add strings for more stable diffusion models, nvidia GPUs
Browse files Browse the repository at this point in the history
  • Loading branch information
ssube committed Jan 8, 2023
1 parent 93e53f6 commit 33fd5f1
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions gui/src/strings.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
// TODO: set up i18next
export const MODEL_LABELS = {
'stable-diffusion-onnx-v1-4': 'Stable Diffusion v1.4',
'stable-diffusion-onnx-v1-5': 'Stable Diffusion v1.5',
'stable-diffusion-onnx-v2-0': 'Stable Diffusion v2.0',
'stable-diffusion-onnx-v2-1': 'Stable Diffusion v2.1',
};

export const PLATFORM_LABELS: Record<string, string> = {
amd: 'AMD GPU',
cpu: 'CPU',
nvidia: 'Nvidia GPU',
};

export const SCHEDULER_LABELS: Record<string, string> = {
Expand Down

0 comments on commit 33fd5f1

Please sign in to comment.