profoz commited on
Commit
a00fe0a
·
1 Parent(s): 06dbf7e

added tokenization

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -37,7 +37,7 @@ value='https://www.databricks.com/blog/2022/11/15/values-define-databricks-cultu
37
  query = st.text_input("Query")
38
 
39
  qa_option = st.selectbox('Q/A Answerer', ('gpt3', 'a-ware/bart-squadv2'))
40
- tokenizing = st.selectbox('How to Tokenize', ("Don't (use entire body as document)", 'Newline (split by \n)'))
41
 
42
  if qa_option == 'gpt3':
43
  qa_model = qa_gpt3
 
37
  query = st.text_input("Query")
38
 
39
  qa_option = st.selectbox('Q/A Answerer', ('gpt3', 'a-ware/bart-squadv2'))
40
+ tokenizing = st.selectbox('How to Tokenize', ("Don't (use entire body as document)", 'Newline (split by newline character)'))
41
 
42
  if qa_option == 'gpt3':
43
  qa_model = qa_gpt3