Chanchal15 commited on
Commit
e1793c7
1 Parent(s): 4f78fd2

Update app.py

Browse files

Colour in header is not working; That's why made it simple black

Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -39,10 +39,10 @@ else:
39
 
40
 
41
  if st.button('Submit Text!'):
42
- st.header(':blue[Input]')
43
  st.write(f" {input_phrase}")
44
  st.text("--"*30)
45
- st.header(':blue[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:
 
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: