Spaces:
Running
Running
Fix code link, add label
Browse files
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://
|
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())
|