Spaces:
Runtime error
Runtime error
Minors fixes
Browse files- README.md +1 -1
- app.py +2 -2
- css/style.css +1 -1
README.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
---
|
2 |
title: ๐บ๐ธ ๐ฌ๐ง 2Passive Voice
|
3 |
-
emoji:
|
4 |
colorFrom: red
|
5 |
colorTo: gray
|
6 |
sdk: gradio
|
|
|
1 |
---
|
2 |
title: ๐บ๐ธ ๐ฌ๐ง 2Passive Voice
|
3 |
+
emoji: ๐ซ
|
4 |
colorFrom: red
|
5 |
colorTo: gray
|
6 |
sdk: gradio
|
app.py
CHANGED
@@ -9,13 +9,13 @@ with iface:
|
|
9 |
with gr.Row():
|
10 |
with gr.Column():
|
11 |
in_sentence = gr.Textbox(
|
12 |
-
label = "Enter
|
13 |
max_lines=2,
|
14 |
lines=1,
|
15 |
placeholder = "Write here the sentence without contractions...",
|
16 |
)
|
17 |
btn_act2pas = gr.Button(
|
18 |
-
value = "Convert to passive
|
19 |
)
|
20 |
str_out = gr.Markdown(
|
21 |
label = "Output in string format",
|
|
|
9 |
with gr.Row():
|
10 |
with gr.Column():
|
11 |
in_sentence = gr.Textbox(
|
12 |
+
label = "Enter a sentence in active voice",
|
13 |
max_lines=2,
|
14 |
lines=1,
|
15 |
placeholder = "Write here the sentence without contractions...",
|
16 |
)
|
17 |
btn_act2pas = gr.Button(
|
18 |
+
value = "Convert to passive voice!"
|
19 |
)
|
20 |
str_out = gr.Markdown(
|
21 |
label = "Output in string format",
|
css/style.css
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
.container {
|
2 |
-
max-width:
|
3 |
margin: auto;
|
4 |
}
|
5 |
|
|
|
1 |
.container {
|
2 |
+
max-width: 90%;
|
3 |
margin: auto;
|
4 |
}
|
5 |
|