kcarnold commited on
Commit
133af7e
·
1 Parent(s): 989ef27

Fix trailing spaces causing bad predictions (grr tokenization)

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -62,6 +62,8 @@ def rewrite_with_predictions():
62
  st.button("Update document")
63
  with cols[1]:
64
  rewrite_in_progress = st.text_area("Rewrite in progress", key='rewrite_in_progress', value="", placeholder="Clicking the buttons below will update this field. You can also edit it directly; press Ctrl+Enter to apply changes.", height=300)
 
 
65
 
66
  if doc.strip() == "" and rewrite_in_progress.strip() == "":
67
  # Allow partial rewrites as a hack to enable autocomplete from the prompt
@@ -71,7 +73,7 @@ def rewrite_with_predictions():
71
 
72
  def append_token(word):
73
  st.session_state['rewrite_in_progress'] = (
74
- st.session_state['rewrite_in_progress'] + word
75
  )
76
 
77
  allow_multi_word = st.checkbox("Allow multi-word predictions", value=False)
 
62
  st.button("Update document")
63
  with cols[1]:
64
  rewrite_in_progress = st.text_area("Rewrite in progress", key='rewrite_in_progress', value="", placeholder="Clicking the buttons below will update this field. You can also edit it directly; press Ctrl+Enter to apply changes.", height=300)
65
+ # strip spaces (but not newlines) to avoid a tokenization issue
66
+ rewrite_in_progress = rewrite_in_progress.rstrip(' ')
67
 
68
  if doc.strip() == "" and rewrite_in_progress.strip() == "":
69
  # Allow partial rewrites as a hack to enable autocomplete from the prompt
 
73
 
74
  def append_token(word):
75
  st.session_state['rewrite_in_progress'] = (
76
+ rewrite_in_progress + word
77
  )
78
 
79
  allow_multi_word = st.checkbox("Allow multi-word predictions", value=False)