Soooma commited on
Commit
4583b4b
1 Parent(s): dd52464

minor 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:</h3> \'{predicted_title}\'"
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"<h4>The predicted title is:</h4> \'{predicted_title}\'"
25
 
26
  st.markdown(html_string, unsafe_allow_html=True)