Chanchal15
commited on
Commit
·
e1793c7
1
Parent(s):
4f78fd2
Update app.py
Browse filesColour in header is not working; That's why made it simple black
app.py
CHANGED
@@ -39,10 +39,10 @@ else:
|
|
39 |
|
40 |
|
41 |
if st.button('Submit Text!'):
|
42 |
-
st.header('
|
43 |
st.write(f" {input_phrase}")
|
44 |
st.text("--"*30)
|
45 |
-
st.header('
|
46 |
output_phrases = parrot.augment(input_phrase=input_phrase,do_diverse=oc)
|
47 |
if output_phrases is not None:
|
48 |
for phrases in output_phrases:
|
|
|
39 |
|
40 |
|
41 |
if st.button('Submit Text!'):
|
42 |
+
st.header('Input')
|
43 |
st.write(f" {input_phrase}")
|
44 |
st.text("--"*30)
|
45 |
+
st.header('Output')
|
46 |
output_phrases = parrot.augment(input_phrase=input_phrase,do_diverse=oc)
|
47 |
if output_phrases is not None:
|
48 |
for phrases in output_phrases:
|