File size: 1,578 Bytes
437fb7f
c6dbfda
437fb7f
c6dbfda
991fc8d
 
c6dbfda
437fb7f
c6dbfda
 
 
 
 
 
 
 
 
 
 
991fc8d
 
c6dbfda
 
 
 
 
 
 
 
 
 
cb5c6f6
 
c446280
c6dbfda
 
cb5c6f6
c6dbfda
 
cb5c6f6
c6dbfda
 
 
437fb7f
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
43
44
45
import gradio as gr
import penman

def run(text, source_style):
    source_amr = penman.decode("(z0 / halo)")
    source_amr_display = penman.encode(source_amr)
    yield source_amr_display, "...", "...", "...", "..."

    triplets = [
        ("kamar", "sangat bagus", "positif"),
        ("kamar", "bersih", "positif")
    ]
    triplets_display = "\n".join(f"({x[0]}, {x[1]}, {x[2]})" for x in triplets)
    yield source_amr_display, triplets_display, "...", "...", "..."

    style_words = ["bagus", "bersih"]
    style_words_display = ", ".join(style_words)
    yield source_amr_display, triplets_display, style_words_display, "...", "..."

    target_amr = penman.decode("(z0 / dunia)")
    target_amr_display = penman.encode(target_amr)
    yield source_amr_display, triplets_display, style_words_display, target_amr_display, "..."

    result = f"dunia ({text=}, {source_style=})"
    yield source_amr_display, triplets_display, style_words_display, target_amr_display, result

demo = gr.Interface(
    fn=run,
    inputs=[
        gr.Textbox(label="Teks (Text)"),
        gr.Radio(label="Gaya sumber (Source style)", choices=[
            ("Positif (Positive)", "LABEL_1"),
            ("Negatif (Negative)", "LABEL_0"),
        ], value="LABEL_1"),
    ],
    outputs=[
        gr.Textbox(label="Graf AMR sumber (Source AMR graph)"),
        gr.Textbox(label="Triplet (Triplets)"),
        gr.Textbox(label="Kata bergaya (Style words)"),
        gr.Textbox(label="Graf AMR target (Target AMR graph)"),
        gr.Textbox(label="Hasil (Result)"),
    ]
)
demo.launch()