Soooma commited on
Commit
dd52464
·
1 Parent(s): 0b02152

Minor formatting change

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -21,6 +21,6 @@ if text:
21
  decoded_output = tokenizer.batch_decode(output, skip_special_tokens=True)[0]
22
  predicted_title = nltk.sent_tokenize(decoded_output.strip())[0]
23
 
24
- html_string = f"<h3>The predicted title is:\'{predicted_title}\'</h3>"
25
 
26
  st.markdown(html_string, unsafe_allow_html=True)
 
21
  decoded_output = tokenizer.batch_decode(output, skip_special_tokens=True)[0]
22
  predicted_title = nltk.sent_tokenize(decoded_output.strip())[0]
23
 
24
+ html_string = f"<h3>The predicted title is:</h3> \'{predicted_title}\'"
25
 
26
  st.markdown(html_string, unsafe_allow_html=True)