From 5ce6001b419d6a72b0f839e2c5add609b03b24e3 Mon Sep 17 00:00:00 2001 From: powderluv Date: Fri, 23 Jun 2023 22:55:47 -0700 Subject: [PATCH] Update stablelm_ui.py to default to fp16 --- apps/stable_diffusion/web/ui/stablelm_ui.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/stable_diffusion/web/ui/stablelm_ui.py b/apps/stable_diffusion/web/ui/stablelm_ui.py index 369d864a31..58cbaa72d9 100644 --- a/apps/stable_diffusion/web/ui/stablelm_ui.py +++ b/apps/stable_diffusion/web/ui/stablelm_ui.py @@ -136,12 +136,12 @@ def chat(curr_system_message, history, model, device, precision): ) precision = gr.Radio( label="Precision", - value="fp32", + value="fp16", choices=[ - "fp16", - "fp32", "int4", "int8", + "fp16", + "fp32", ], visible=True, )