Annorita's picture
test
1459d42
raw
history blame
354 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
model_name = st.text_input('Model Name', 'deepseek-ai/deepseek-coder-1.3b-instruct')
'Your choice:', model_name