Spaces:
Running
Running
Handle null input
Browse files
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):
|