christopher commited on
Commit
e48d20b
·
1 Parent(s): 8b7fa33

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -7,6 +7,6 @@ visualizer = EncodingVisualizer(tokenizer=tokenizer._tokenizer, default_to_noteb
7
  text = st.text_area(label="", placeholder="Text to tokenize")
8
  button_clicked = st.button("Tokenize")
9
  if text or button_clicked:
10
- st.components.v1.html(visualizer(text), height=500)
11
 
12
 
 
7
  text = st.text_area(label="", placeholder="Text to tokenize")
8
  button_clicked = st.button("Tokenize")
9
  if text or button_clicked:
10
+ st.components.v1.html(visualizer(text), height=1500)
11
 
12