1
0
Fork 0

fix(gui): add strings for more stable diffusion models, nvidia GPUs

This commit is contained in:
Sean Sube 2023-01-08 09:07:30 -06:00
parent 93e53f6dc3
commit 33fd5f1b53
1 changed files with 4 additions and 0 deletions

View File

@ -1,11 +1,15 @@
// TODO: set up i18next // TODO: set up i18next
export const MODEL_LABELS = { 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-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> = { export const PLATFORM_LABELS: Record<string, string> = {
amd: 'AMD GPU', amd: 'AMD GPU',
cpu: 'CPU', cpu: 'CPU',
nvidia: 'Nvidia GPU',
}; };
export const SCHEDULER_LABELS: Record<string, string> = { export const SCHEDULER_LABELS: Record<string, string> = {