cifkao commited on
Commit
8d171c2
·
1 Parent(s): 248cf43

Handle null input

Browse files
Files changed (1) hide show
  1. app.py +3 -0
app.py CHANGED
@@ -63,6 +63,9 @@ inputs = tokenizer([text])
63
  [input_ids] = inputs["input_ids"]
64
  window_len = min(window_len, len(input_ids))
65
 
 
 
 
66
  @st.cache_data(show_spinner=False)
67
  @torch.inference_mode()
68
  def run_context_length_probing(model_name, text, window_len):
 
63
  [input_ids] = inputs["input_ids"]
64
  window_len = min(window_len, len(input_ids))
65
 
66
+ if len(input_ids) < 1:
67
+ st.stop()
68
+
69
  @st.cache_data(show_spinner=False)
70
  @torch.inference_mode()
71
  def run_context_length_probing(model_name, text, window_len):