FremyCompany commited on
Commit
4bc0b85
Β·
verified Β·
1 Parent(s): 1c6143a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -0
app.py CHANGED
@@ -81,6 +81,7 @@ html += """
81
  html += f"""{("βœ… Congrats!" if sentence_similarity >= 0.65 else "❌ Sorry!")} These sentences have {100*sentence_similarity}% similarity."""
82
  html += """
83
  </div>
 
84
  <p id="sent0">"""
85
  for token in tokens[0]:
86
  html += f"""{' ' if token[0] == ' ' else ''}<span>{token[1:] if token[0] == ' ' else token}</span>"""
 
81
  html += f"""{("βœ… Congrats!" if sentence_similarity >= 0.65 else "❌ Sorry!")} These sentences have {100*sentence_similarity}% similarity."""
82
  html += """
83
  </div>
84
+ <div><small style="color: silver; text-wrap: balance;">Hover over a word from either sentence to see which other tokens are mapped to it.</small></div>
85
  <p id="sent0">"""
86
  for token in tokens[0]:
87
  html += f"""{' ' if token[0] == ' ' else ''}<span>{token[1:] if token[0] == ' ' else token}</span>"""