File size: 963 Bytes
3c24804
 
 
 
051e2b5
3c24804
d235c52
3c24804
 
 
 
 
 
 
 
 
 
 
6862863
3c24804
67df5dc
3c24804
 
 
 
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
import gradio as gr
from infer import infer



def format_text(text_input, list_bias_input):
    print('{}\n{}\n\n'.format(text_input, list_bias_input))
    bias_list = list_bias_input.strip().split('\n')
    norm_result = infer([text_input], bias_list)
    return norm_result[0]


title = "Transformation spoken text to written text"

iface = gr.Interface(format_text,
                     [
                         gr.inputs.Textbox(
                             lines=1,
                             default="ngày hai tám tháng tư cô vít bùng phát ở xì cút len chiếm tám mươi phần trăm là biến chủng đen ta và bê ta và ô mi cờ ron"),
                         gr.inputs.Textbox(
                             lines=5, default='covid\ndelta\nbeta\nomicron | ô mi cờ ron\nscotland | sờ cốt lờn | xì cút len'),
                     ],
                     outputs="text",
                     title=title)
iface.launch()