cifkao commited on
Commit
a7f1a72
·
1 Parent(s): bc6cc98

Fix code link, add label

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -48,7 +48,7 @@ if not compact_layout:
48
  st.markdown(
49
  """[📃 Paper](https://arxiv.org/abs/2212.14815) |
50
  [🌍 Website](https://cifkao.github.io/context-probing) |
51
- [🧑‍💻 Code](https://cifkao.github.io/context-probing)
52
  """
53
  )
54
 
@@ -150,4 +150,5 @@ scores = run_context_length_probing(
150
  )
151
  tokens = ids_to_readable_tokens(tokenizer, input_ids)
152
 
 
153
  highlighted_text_component(tokens=tokens, scores=scores.tolist())
 
48
  st.markdown(
49
  """[📃 Paper](https://arxiv.org/abs/2212.14815) |
50
  [🌍 Website](https://cifkao.github.io/context-probing) |
51
+ [🧑‍💻 Code](https://github.com/cifkao/context-probing)
52
  """
53
  )
54
 
 
150
  )
151
  tokens = ids_to_readable_tokens(tokenizer, input_ids)
152
 
153
+ st.markdown('<label style="font-size: 14px;">Output</label>', unsafe_allow_html=True)
154
  highlighted_text_component(tokens=tokens, scores=scores.tolist())