christopher commited on
Commit
2954f61
·
1 Parent(s): 3920380

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -12,6 +12,6 @@ button_clicked = st.button("Tokenize")
12
  if text or button_clicked:
13
  st.write(len(tokenizer.tokenize(text)))
14
  st.components.v1.html(visualizer(text), height=1500)
15
- st.write(dir(tokenizer))
16
 
17
 
 
12
  if text or button_clicked:
13
  st.write(len(tokenizer.tokenize(text)))
14
  st.components.v1.html(visualizer(text), height=1500)
15
+ st.write(tokenizer.vocab_size)
16
 
17