abdiharyadi commited on
Commit
cb5c6f6
β€’
1 Parent(s): c6dbfda

style: fix mistype

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -29,15 +29,15 @@ demo = gr.Interface(
29
  inputs=[
30
  gr.Textbox(label="Teks (Text)"),
31
  gr.Radio(label="Gaya sumber (Source style)", choices=[
32
- ("Positif (positive)", "LABEL_1"),
33
- ("Negatif (negatif)", "LABEL_0"),
34
  ]),
35
  ],
36
  outputs=[
37
- gr.Textbox(label="AMR graf sumber (Source AMR graph)"),
38
  gr.Textbox(label="Triplet (Triplets)"),
39
  gr.Textbox(label="Kata bergaya (Style words)"),
40
- gr.Textbox(label="AMR graf target (Target AMR graph)"),
41
  gr.Textbox(label="Hasil (Result)"),
42
  ]
43
  )
 
29
  inputs=[
30
  gr.Textbox(label="Teks (Text)"),
31
  gr.Radio(label="Gaya sumber (Source style)", choices=[
32
+ ("Positif (Positive)", "LABEL_1"),
33
+ ("Negatif (Negative)", "LABEL_0"),
34
  ]),
35
  ],
36
  outputs=[
37
+ gr.Textbox(label="Graf AMR sumber (Source AMR graph)"),
38
  gr.Textbox(label="Triplet (Triplets)"),
39
  gr.Textbox(label="Kata bergaya (Style words)"),
40
+ gr.Textbox(label="Graf AMR target (Target AMR graph)"),
41
  gr.Textbox(label="Hasil (Result)"),
42
  ]
43
  )