Spaces:
Runtime error
Runtime error
Commit
·
2954f61
1
Parent(s):
3920380
Update app.py
Browse files
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(
|
| 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 |
|