You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Some targets will have artificial limits on input length that are independent of the model (e.g. a web frontend that allows only n characters/words of input)
Motivation
Running full sets of probes against these targets is necessarily going to be wasteful and will not indicate anything truly about robustness. If we subselect by length, we can reduce load and improve accuracy.
The text was updated successfully, but these errors were encountered:
Interesting feature. Are there concrete examples of this?
Do we have a discrete list of such targets that can have their input lengths capped?
Not really - some are manually tracked in the openai module
Some targets will have artificial limits on input length that are independent of the model (e.g. a web frontend that allows only n characters/words of input)
This sounds like it requires three ingredients
Knowledge of the max length, maybe set by config or a generator attrib
Orchestration-level intervention to not pose the prompt. This could be represented as prompt:whatever output:None, which will come back as a skip - that seems appropriate to me, the prompt is skipped.
Summary
Some targets will have artificial limits on input length that are independent of the model (e.g. a web frontend that allows only n characters/words of input)
Motivation
Running full sets of probes against these targets is necessarily going to be wasteful and will not indicate anything truly about robustness. If we subselect by length, we can reduce load and improve accuracy.
The text was updated successfully, but these errors were encountered: