Daniel-Saeedi commited on
Commit
a66a802
1 Parent(s): b0c80fc

bert-base-uncased

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -11,7 +11,7 @@ def make_slider(unmask):
11
  html = '<div><ol>'
12
 
13
  for word in unmask:
14
- html += '<li>{} - Score: {}<li>'.format(word['token_str'],word['score'])
15
 
16
  html += '</ol></div>'
17
  return html
 
11
  html = '<div><ol>'
12
 
13
  for word in unmask:
14
+ html += '<li><b>{}</b> - Score: {}<li>'.format(word['token_str'],word['score'])
15
 
16
  html += '</ol></div>'
17
  return html