Spaces:
Runtime error
Runtime error
File size: 1,115 Bytes
4efe6b5 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 |
import gradio as gr
from rvc.configs.config import Config
config = Config()
from assets.i18n.i18n import I18nAuto
i18n = I18nAuto()
def precision_tab():
with gr.Row():
with gr.Column():
precision = gr.Radio(
label=i18n("Precision"),
info=i18n(
"Select the precision you want to use for training and inference."
),
choices=[
"fp16",
"fp32",
],
value=config.get_precision(),
interactive=True,
)
precision_output = gr.Textbox(
label=i18n("Output Information"),
info=i18n("The output information will be displayed here."),
value="",
max_lines=8,
interactive=False,
)
update_button = gr.Button(i18n("Update precision"))
update_button.click(
fn=config.set_precision,
inputs=[precision],
outputs=[precision_output],
)
|