Skip to content

Commit

Permalink
Update stablelm_ui.py to default to fp16
Browse files Browse the repository at this point in the history
  • Loading branch information
powderluv authored Jun 24, 2023
1 parent 501d0ca commit 5ce6001
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions apps/stable_diffusion/web/ui/stablelm_ui.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
)
Expand Down

0 comments on commit 5ce6001

Please sign in to comment.