Spaces:
Sleeping
Sleeping
File size: 354 Bytes
5ff29be 6893866 5ff29be 6893866 96a0e76 1459d42 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
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 |