Update stablelm_ui.py to default to fp16

This commit is contained in:
powderluv
2023-06-23 22:55:47 -07:00
committed by GitHub
parent 501d0ca52e
commit 5ce6001b41

View File

@@ -136,12 +136,12 @@ with gr.Blocks(title="Chatbot") as stablelm_chat:
)
precision = gr.Radio(
label="Precision",
value="fp32",
value="fp16",
choices=[
"fp16",
"fp32",
"int4",
"int8",
"fp16",
"fp32",
],
visible=True,
)