Spaces:
Runtime error
Runtime error
bert-base-uncased
Browse files
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
|