nanom's picture
First commit
5d0a311
raw
history blame
1.12 kB
import gradio as gr
from modules.m_connector import Connector
iface = gr.Blocks(css="container {max-width: 78%; margin: auto;}")
conn = Connector()
with iface:
in_sentence = gr.Textbox(
label = "Active sentence",
lines=2,
placeholder = "Enter here the sentence without contractions...",
)
btn_act2pas = gr.Button(
value = "Pass to passive!"
)
error = gr.HTML()
out_sentence = gr.HTML(
label = "Out. Pasive sentences:",
)
gr.Examples(
inputs = in_sentence,
examples = [
"The teacher corrected the exams in less than an hour",
"Christopher Columbus discovered America in 1492",
"Mchael Jackson sings Billy Jean",
"They are painting the house" ,
"My mom has prepared the dinner",
"The man has not found the farm"
]
)
btn_act2pas.click(
fn = conn.active2passive,
inputs = in_sentence,
outputs = [error, out_sentence]
)
iface.launch(
# server_port= 9090,
# server_name = "0.0.0.0",
share = True
)