Annorita's picture
test
96a0e76
raw
history blame
239 Bytes
import streamlit as st
st.title('Tokenizers demo!!')
x = st.slider('Select a value')
st.write(x, 'squared is', x * x)
option = st.selectbox(
'Choose a tokenizer',
['狗', '貓', '鸚鵡', '天竺鼠'])
'你的答案:', option