---
title: "PromptRobust (benchmark)"
source: "https://systems-analysis.info/eng/PromptRobust_(benchmark)"
wiki: "systems-analysis.info/eng"
article: "PromptRobust_(benchmark)"
language: "en"
categories:
  - "Category:English"
  - "Category:Large language models"
  - "Category:LLM benchmarks"
  - "Category:Machine learning"
  - "Category:Technology"
revision_id: 312
wiki_created_at: 2026-09-06T22:20:24Z
wiki_modified_at: 2026-09-06T22:20:24Z
downloaded_at: 2026-09-07T22:22:37Z
---

# PromptRobust (benchmark)

**PromptRobust** (also known as **PromptBench**) is a comprehensive **benchmark** for evaluating the robustness of [Large Language Models](https://systems-analysis.info/eng/Large_language_model "Large language model") (LLMs) to **adversarial prompt modifications**—minor perturbations in the wording of a task that do not alter its meaning<sup>[\[1\]](https://systems-analysis.info/eng/PromptRobust_(benchmark)#cite_note-arxiv-main-1)[\[2\]](https://systems-analysis.info/eng/PromptRobust_(benchmark)#cite_note-towardsai-2)</sup>. The benchmark was developed in 2023 by a group of researchers (Kaijie Zhu et al.) from Microsoft Research Asia<sup>[\[1\]](https://systems-analysis.info/eng/PromptRobust_(benchmark)#cite_note-arxiv-main-1)</sup>. The creation of PromptRobust was motivated by the observation that modern LLMs are sensitive to the details of phrasing: even minor changes (e.g., typos or paraphrasing) can significantly affect the models' responses<sup>[\[2\]](https://systems-analysis.info/eng/PromptRobust_(benchmark)#cite_note-towardsai-2)</sup>. The benchmark aims to quantitatively measure this vulnerability and encourage the development of more reliable methods for interacting with LLMs.

## Evaluation Methodology

As part of the PromptBench study, a corpus of **4,788 modified prompts** was created, all of which preserve the original meaning of the tasks<sup>[\[3\]](https://systems-analysis.info/eng/PromptRobust_(benchmark)#cite_note-arxiv-abs-3)</sup>. These adversarial prompts were generated at four levels of modification complexity<sup>[\[1\]](https://systems-analysis.info/eng/PromptRobust_(benchmark)#cite_note-arxiv-main-1)</sup>:

- **Character-level**: Introducing typos, substituting, or swapping characters (simulating random input errors).
- **Word-level**: Replacing some words with synonyms, inserting "noise" words, or making other minor lexical changes.
- **Sentence-level**: Paraphrasing sentence structures, adding, or rearranging parts of a phrase without changing the overall topic.
- **Semantic-level**: A deeper reformulation of the prompt while preserving its task (e.g., alternative wordings of the same question)<sup>[\[1\]](https://systems-analysis.info/eng/PromptRobust_(benchmark)#cite_note-arxiv-main-1)</sup>.

The goal of such "attacks" is to test how minor deviations (e.g., random typos or the use of synonymous phrasing) affect the model's ability to correctly perform a task, given that the task itself has not changed<sup>[\[1\]](https://systems-analysis.info/eng/PromptRobust_(benchmark)#cite_note-arxiv-main-1)</sup>. Each generated adversarial prompt was applied to a range of standard NLP tasks, including **sentiment analysis**, **grammatical correctness detection**, **duplicate sentence detection**, **natural language inference** (NLI), **reading comprehension**, **machine translation**, and **solving mathematical problems**<sup>[\[1\]](https://systems-analysis.info/eng/PromptRobust_(benchmark)#cite_note-arxiv-main-1)</sup>. For the experiments, 8 different task types across 13 datasets were selected—from classic [GLUE](https://systems-analysis.info/eng/GLUE_Benchmark "GLUE Benchmark") sets (e.g., SST-2 for sentiment, MNLI for NLI) to specialized mathematical and multilingual tests<sup>[\[1\]](https://systems-analysis.info/eng/PromptRobust_(benchmark)#cite_note-arxiv-main-1)</sup>.

Importantly, the robustness of different **prompt formats** was tested<sup>[\[1\]](https://systems-analysis.info/eng/PromptRobust_(benchmark)#cite_note-arxiv-main-1)</sup>:

- Direct prompts without examples (**zero-shot**, instruction only).
- Prompts with a few examples (**[few-shot](https://systems-analysis.info/eng/Few-Shot_and_Zero-Shot_Learning "Few-Shot and Zero-Shot Learning")**, where samples of the solution are provided in the prompt).
- Role-playing prompts (**in-context roles**, e.g., "You are a sentiment analysis system, determine...").
- Task-describing prompts (**task-oriented**, a direct description of the task)<sup>[\[1\]](https://systems-analysis.info/eng/PromptRobust_(benchmark)#cite_note-arxiv-main-1)</sup>.

Various large-scale language models were also tested, ranging from the relatively small Flan-[T5](https://systems-analysis.info/eng/T5_(Text-to-Text_Transfer_Transformer) "T5 (Text-to-Text Transfer Transformer)")-large and the UL2 model to the advanced ChatGPT and [GPT](https://systems-analysis.info/eng/GPT_(OpenAI) "GPT (OpenAI)")-4, as well as open-source models from the [LLaMA](https://systems-analysis.info/eng/LLaMA_(Meta_AI) "LLaMA (Meta AI)") 2 family and their derivative, Vicuna<sup>[\[1\]](https://systems-analysis.info/eng/PromptRobust_(benchmark)#cite_note-arxiv-main-1)</sup>. Existing methods from the field of adversarial NLP (such as TextBugger, DeepWordBug, TextFooler, etc.) were used to generate the attacks, adapted to modify prompts instead of input data<sup>[\[1\]](https://systems-analysis.info/eng/PromptRobust_(benchmark)#cite_note-arxiv-main-1)</sup>. The correctness of the resulting "perturbed" prompts was verified by automatic and manual methods; according to the report, at least 85% of the adversarial variations retain their correct semantics and are understandable to humans<sup>[\[1\]](https://systems-analysis.info/eng/PromptRobust_(benchmark)#cite_note-arxiv-main-1)</sup>. Thus, the impact of the attacks reflects the model's failures in perceiving the paraphrased task, rather than a loss of the task's meaning itself.

## Results and Conclusions

The tests showed that modern LLMs are **insufficiently robust against small changes in prompt wording**<sup>[\[3\]](https://systems-analysis.info/eng/PromptRobust_(benchmark)#cite_note-arxiv-abs-3)</sup>. For all tested models, a significant decrease in response quality was observed under the influence of the generated attacks<sup>[\[3\]](https://systems-analysis.info/eng/PromptRobust_(benchmark)#cite_note-arxiv-abs-3)</sup>. In particular, even simple cases—such as a typo in the text of a math problem or replacing one key word with its synonym—led the model to produce an incorrect result, whereas it had performed correctly without the perturbation<sup>[\[1\]](https://systems-analysis.info/eng/PromptRobust_(benchmark)#cite_note-arxiv-main-1)</sup>. The authors' overall conclusion: "modern large language models are **not robust** to adversarial prompts,"<sup>[\[3\]](https://systems-analysis.info/eng/PromptRobust_(benchmark)#cite_note-arxiv-abs-3)</sup> meaning that minor deviations in phrasing can systematically mislead them.

Analysis of different attack types revealed that changes at the **word level** have the most disruptive effect on LLM performance<sup>[\[2\]](https://systems-analysis.info/eng/PromptRobust_(benchmark)#cite_note-towardsai-2)</sup>. Replacing words with synonyms or minor derivational distortions led to the **greatest drop in quality**—an average of ≈33% relative to the baseline performance on the same tasks<sup>[\[2\]](https://systems-analysis.info/eng/PromptRobust_(benchmark)#cite_note-towardsai-2)</sup>. Attacks at the **character level** (typos, random characters) caused an average accuracy drop of ~20%<sup>[\[2\]](https://systems-analysis.info/eng/PromptRobust_(benchmark)#cite_note-towardsai-2)</sup>. In contrast, qualitatively changing or adding entire sentences to the prompt had a much weaker effect, barely confusing the model<sup>[\[1\]](https://systems-analysis.info/eng/PromptRobust_(benchmark)#cite_note-arxiv-main-1)</sup>. **Semantic paraphrasing** (deeply rephrasing the prompt in a different way) proved to be comparable in harmfulness to simple typos<sup>[\[1\]](https://systems-analysis.info/eng/PromptRobust_(benchmark)#cite_note-arxiv-main-1)</sup>. These facts highlight that LLMs are particularly vulnerable to subtle lexical changes and errors in key words<sup>[\[1\]](https://systems-analysis.info/eng/PromptRobust_(benchmark)#cite_note-arxiv-main-1)</sup>. Notably, grammatical distortions (typos) can theoretically be filtered out by standard spell-checkers, whereas changes at the word and meaning levels require a developed semantic understanding from the model, which current models often lack<sup>[\[1\]](https://systems-analysis.info/eng/PromptRobust_(benchmark)#cite_note-arxiv-main-1)</sup>.

An analysis of the performance of various models showed significant variation in their robustness<sup>[\[1\]](https://systems-analysis.info/eng/PromptRobust_(benchmark)#cite_note-arxiv-main-1)</sup>. **GPT-4** and **UL2** demonstrated the best robustness to adversarial prompts<sup>[\[1\]](https://systems-analysis.info/eng/PromptRobust_(benchmark)#cite_note-arxiv-main-1)</sup>. The Flan-T5-large model and the conversational model ChatGPT were also found to be slightly less susceptible to failures<sup>[\[1\]](https://systems-analysis.info/eng/PromptRobust_(benchmark)#cite_note-arxiv-main-1)</sup>. Models from the LLaMA 2 family ranked in the middle, while **Vicuna** (13B) stood out as the most vulnerable to all types of attacks<sup>[\[1\]](https://systems-analysis.info/eng/PromptRobust_(benchmark)#cite_note-arxiv-main-1)</sup>. Interestingly, **model size did not prove to be a decisive factor in robustness**<sup>[\[1\]](https://systems-analysis.info/eng/PromptRobust_(benchmark)#cite_note-arxiv-main-1)</sup>: the relatively small T5-large was nearly as stable in its responses as the much larger ChatGPT model<sup>[\[1\]](https://systems-analysis.info/eng/PromptRobust_(benchmark)#cite_note-arxiv-main-1)</sup>. The authors suggest that the **training and [fine-tuning](https://systems-analysis.info/eng/Fine-tuning_(deep_learning) "Fine-tuning (deep learning)") methods** of the models play a key role, not just scale<sup>[\[1\]](https://systems-analysis.info/eng/PromptRobust_(benchmark)#cite_note-arxiv-main-1)</sup>. For instance, UL2 and T5-large underwent extended [pre-training](https://systems-analysis.info/eng/Pre-training_of_large_language_models "Pre-training of large language models") on large data corpora, while ChatGPT was trained with [reinforcement learning from human feedback](https://systems-analysis.info/eng/Reinforcement_learning_from_human_feedback_(RLHF) "Reinforcement learning from human feedback (RLHF)") (RLHF), which may have strengthened their robustness<sup>[\[1\]](https://systems-analysis.info/eng/PromptRobust_(benchmark)#cite_note-arxiv-main-1)</sup>. In contrast, Vicuna was trained on a relatively limited dataset (as an open-source replica), which likely explains its high sensitivity to changes in phrasing<sup>[\[1\]](https://systems-analysis.info/eng/PromptRobust_(benchmark)#cite_note-arxiv-main-1)</sup>. These results indicate that improving fine-tuning methods can enhance model reliability more effectively than simply increasing their size.

### Influence of Prompt Format

The format of the prompt also affects the reliability of the response<sup>[\[1\]](https://systems-analysis.info/eng/PromptRobust_(benchmark)#cite_note-arxiv-main-1)</sup>. It was found that **prompts with examples (few-shot) significantly increase** a model's robustness compared to single-step instructions without examples (zero-shot)<sup>[\[1\]](https://systems-analysis.info/eng/PromptRobust_(benchmark)#cite_note-arxiv-main-1)</sup>. Having several demonstration examples of the task in the prompt helps the model interpret the instruction more accurately, even in the presence of noisy modifications. Role-playing and task-oriented prompts showed a comparable level of robustness overall, although their effectiveness varied from task to task<sup>[\[1\]](https://systems-analysis.info/eng/PromptRobust_(benchmark)#cite_note-arxiv-main-1)</sup>. For example, in sentiment analysis and duplicate sentence detection tasks, the role-playing format was slightly more reliable, whereas in reading comprehension and translation tasks, explicit task instructions worked better<sup>[\[1\]](https://systems-analysis.info/eng/PromptRobust_(benchmark)#cite_note-arxiv-main-1)</sup>. These observations can serve as a guide for prompt design: adding detailed examples and role context reduces the likelihood of model errors on non-standard phrasings.

### Transferability of Attacks Between Models

The transferability of attacks between models was found to be limited<sup>[\[1\]](https://systems-analysis.info/eng/PromptRobust_(benchmark)#cite_note-arxiv-main-1)</sup>. Adversarial prompts specifically crafted against one model are not always equally effective against another<sup>[\[1\]](https://systems-analysis.info/eng/PromptRobust_(benchmark)#cite_note-arxiv-main-1)</sup>. For instance, it was noted that "trap" prompts generated to exploit ChatGPT's vulnerabilities had a much weaker effect on GPT-4<sup>[\[1\]](https://systems-analysis.info/eng/PromptRobust_(benchmark)#cite_note-arxiv-main-1)</sup>. The latter performed better, likely because the attacks did not transfer directly to its architecture—what confuses one model may not affect a more advanced model with different training<sup>[\[1\]](https://systems-analysis.info/eng/PromptRobust_(benchmark)#cite_note-arxiv-main-1)</sup>. Nevertheless, some types of simple perturbations (e.g., typos) had a negative effect on several models at once, which suggests similar weaknesses in their linguistic foundations.

### Practical Recommendations

During the work on PromptBench, practical recommendations for users and developers of LLMs were also identified<sup>[\[2\]](https://systems-analysis.info/eng/PromptRobust_(benchmark)#cite_note-towardsai-2)</sup>. The simple conclusion: the stability of the phrasing matters<sup>[\[2\]](https://systems-analysis.info/eng/PromptRobust_(benchmark)#cite_note-towardsai-2)</sup>. It is necessary to **avoid typos and careless wording in prompts**<sup>[\[2\]](https://systems-analysis.info/eng/PromptRobust_(benchmark)#cite_note-towardsai-2)</sup>. The authors show that correcting even minor errors (spelling, random capitalization, extra spaces) can significantly improve the reliability of the model's response<sup>[\[2\]](https://systems-analysis.info/eng/PromptRobust_(benchmark)#cite_note-towardsai-2)</sup>. Furthermore, the **choice of words in the instruction affects its robustness**<sup>[\[2\]](https://systems-analysis.info/eng/PromptRobust_(benchmark)#cite_note-towardsai-2)</sup>. An analysis of term frequency in robust vs. vulnerable prompts revealed that some words appear more often in "reliable" prompts, while others are found in those where the model was confused<sup>[\[2\]](https://systems-analysis.info/eng/PromptRobust_(benchmark)#cite_note-towardsai-2)</sup>. For example, prompts containing words like "acting," "provided," "detection," etc., were less likely to cause failures, whereas words like "respond," "following," or "examine" appeared in more problematic cases<sup>[\[2\]](https://systems-analysis.info/eng/PromptRobust_(benchmark)#cite_note-towardsai-2)</sup>. This indicates that a certain style and lexicon in prompts can either mitigate or, conversely, provoke a model's vulnerabilities. In general, it is recommended to formulate prompts **as clearly, unambiguously, and in terms familiar to the model as possible**, especially for mission-critical applications<sup>[\[2\]](https://systems-analysis.info/eng/PromptRobust_(benchmark)#cite_note-towardsai-2)</sup>.

An interesting side effect noted by the researchers was the impact of adding meaningless or irrelevant text fragments to the prompt<sup>[\[2\]](https://systems-analysis.info/eng/PromptRobust_(benchmark)#cite_note-towardsai-2)</sup>. It was found that **inserting a random sequence of characters** (e.g., "LKF0FZxMZ4") at the end or in the middle of a prompt can distract the model's attention and **reduce the accuracy of its response**<sup>[\[2\]](https://systems-analysis.info/eng/PromptRobust_(benchmark)#cite_note-towardsai-2)</sup>. On the other hand, adding a neutral but grammatically correct phrase (e.g., "and true is true") in some cases actually **improved the response**, as if focusing the model on the significant parts of the question<sup>[\[2\]](https://systems-analysis.info/eng/PromptRobust_(benchmark)#cite_note-towardsai-2)</sup>. This phenomenon underscores how unpredictably LLMs react to seemingly insignificant details in the input. It also attests to the complexity of the models' internal workings: the slightest changes in context can either disrupt or improve their performance, depending on how the model's attention is redistributed.

## Significance and Future Development

PromptRobust/PromptBench has made a significant contribution to understanding the reliability of LLMs<sup>[\[2\]](https://systems-analysis.info/eng/PromptRobust_(benchmark)#cite_note-towardsai-2)</sup>. The proposed benchmark and the collected data are open to the community: the code and sets of adversarial prompts are available in the repository<sup>[\[1\]](https://systems-analysis.info/eng/PromptRobust_(benchmark)#cite_note-arxiv-main-1)</sup>. This allows other researchers to test new models for robustness to prompt variations and compare results<sup>[\[1\]](https://systems-analysis.info/eng/PromptRobust_(benchmark)#cite_note-arxiv-main-1)</sup>. The next step is the development of methods to protect models from such attacks—for example, improved training algorithms that account for possible typos and paraphrasing, or built-in systems for normalizing input speech<sup>[\[2\]](https://systems-analysis.info/eng/PromptRobust_(benchmark)#cite_note-towardsai-2)</sup>. PromptBench is already seen as a foundation for such research on improving the **robustness** of language models to real-world, imprecise input data<sup>[\[2\]](https://systems-analysis.info/eng/PromptRobust_(benchmark)#cite_note-towardsai-2)</sup>.

Ultimately, the work of Zhu and colleagues demonstrates the importance of considering prompt robustness when deploying LLMs in practical applications: models must not only show high accuracy on "clean" data but also maintain correctness when faced with minor deviations in input, whether from accidental user errors or deliberate adversarial attacks<sup>[\[2\]](https://systems-analysis.info/eng/PromptRobust_(benchmark)#cite_note-towardsai-2)[\[4\]](https://systems-analysis.info/eng/PromptRobust_(benchmark)#cite_note-cmu-realer-4)</sup>.

## External links

- <a href="https://arxiv.org/abs/2306.04528" class="external text" rel="nofollow">Original PromptBench paper (arXiv)</a>
- <a href="https://github.com/microsoft/PromptBench" class="external text" rel="nofollow">PromptBench repository on GitHub</a>
- <a href="https://towardsai.net/p/l/prompt-robustness-how-to-measure-and-how-to-enhance" class="external text" rel="nofollow">"Prompt Robustness: How to Measure and How to Enhance" article (Towards AI)</a>

## Literature

- Liang, P. et al. (2022). *Holistic Evaluation of Language Models (HELM)*. <a href="https://arxiv.org/abs/2211.09110" class="external text" rel="nofollow">arXiv:2211.09110</a>.
- Chang, Y. et al. (2023). *A Survey on Evaluation of Large Language Models*. <a href="https://arxiv.org/abs/2307.03109" class="external text" rel="nofollow">arXiv:2307.03109</a>.
- Ni, S. et al. (2025). *A Survey on Large Language Model Benchmarks*. <a href="https://arxiv.org/abs/2508.15361" class="external text" rel="nofollow">arXiv:2508.15361</a>.
- Biderman, S. et al. (2024). *The Language Model Evaluation Harness (lm-eval): Guidance and Lessons Learned*. <a href="https://arxiv.org/abs/2405.14782" class="external text" rel="nofollow">arXiv:2405.14782</a>.
- Kiela, D. et al. (2021). *Dynabench: Rethinking Benchmarking in NLP*. <a href="https://arxiv.org/abs/2104.14337" class="external text" rel="nofollow">arXiv:2104.14337</a>.
- Ma, Z. et al. (2021). *Dynaboard: An Evaluation‑As‑A‑Service Platform for Holistic Next‑Generation Benchmarking*. <a href="https://arxiv.org/abs/2106.06052" class="external text" rel="nofollow">arXiv:2106.06052</a>.
- Goel, K. et al. (2021). *Robustness Gym: Unifying the NLP Evaluation Landscape*. <a href="https://arxiv.org/abs/2101.04840" class="external text" rel="nofollow">arXiv:2101.04840</a>.
- Xu, C. et al. (2024). *Benchmark Data Contamination of Large Language Models: A Survey*. <a href="https://arxiv.org/abs/2406.04244" class="external text" rel="nofollow">arXiv:2406.04244</a>.
- Liu, S. et al. (2025). *A Comprehensive Survey on Safety Evaluation of LLMs*. <a href="https://arxiv.org/abs/2506.11094" class="external text" rel="nofollow">arXiv:2506.11094</a>.
- Chiang, W.-L. et al. (2024). *Chatbot Arena: An Open Platform for Evaluating LLMs by Human Preference*. <a href="https://arxiv.org/abs/2403.04132" class="external text" rel="nofollow">arXiv:2403.04132</a>.
- Boubdir, M. et al. (2023). *Elo Uncovered: Robustness and Best Practices in Language Model Evaluation*. <a href="https://arxiv.org/abs/2311.17295" class="external text" rel="nofollow">arXiv:2311.17295</a>.
- Huang, L. et al. (2023). *A Survey on Hallucination in Large Language Models*. <a href="https://arxiv.org/abs/2311.05232" class="external text" rel="nofollow">arXiv:2311.05232</a>.

## References

1.  <span id="cite_note-arxiv-main-1">↑ <sup>[1.00](https://systems-analysis.info/eng/PromptRobust_(benchmark)#cite_ref-arxiv-main_1-0)</sup> <sup>[1.01](https://systems-analysis.info/eng/PromptRobust_(benchmark)#cite_ref-arxiv-main_1-1)</sup> <sup>[1.02](https://systems-analysis.info/eng/PromptRobust_(benchmark)#cite_ref-arxiv-main_1-2)</sup> <sup>[1.03](https://systems-analysis.info/eng/PromptRobust_(benchmark)#cite_ref-arxiv-main_1-3)</sup> <sup>[1.04](https://systems-analysis.info/eng/PromptRobust_(benchmark)#cite_ref-arxiv-main_1-4)</sup> <sup>[1.05](https://systems-analysis.info/eng/PromptRobust_(benchmark)#cite_ref-arxiv-main_1-5)</sup> <sup>[1.06](https://systems-analysis.info/eng/PromptRobust_(benchmark)#cite_ref-arxiv-main_1-6)</sup> <sup>[1.07](https://systems-analysis.info/eng/PromptRobust_(benchmark)#cite_ref-arxiv-main_1-7)</sup> <sup>[1.08](https://systems-analysis.info/eng/PromptRobust_(benchmark)#cite_ref-arxiv-main_1-8)</sup> <sup>[1.09](https://systems-analysis.info/eng/PromptRobust_(benchmark)#cite_ref-arxiv-main_1-9)</sup> <sup>[1.10](https://systems-analysis.info/eng/PromptRobust_(benchmark)#cite_ref-arxiv-main_1-10)</sup> <sup>[1.11](https://systems-analysis.info/eng/PromptRobust_(benchmark)#cite_ref-arxiv-main_1-11)</sup> <sup>[1.12](https://systems-analysis.info/eng/PromptRobust_(benchmark)#cite_ref-arxiv-main_1-12)</sup> <sup>[1.13](https://systems-analysis.info/eng/PromptRobust_(benchmark)#cite_ref-arxiv-main_1-13)</sup> <sup>[1.14](https://systems-analysis.info/eng/PromptRobust_(benchmark)#cite_ref-arxiv-main_1-14)</sup> <sup>[1.15](https://systems-analysis.info/eng/PromptRobust_(benchmark)#cite_ref-arxiv-main_1-15)</sup> <sup>[1.16](https://systems-analysis.info/eng/PromptRobust_(benchmark)#cite_ref-arxiv-main_1-16)</sup> <sup>[1.17](https://systems-analysis.info/eng/PromptRobust_(benchmark)#cite_ref-arxiv-main_1-17)</sup> <sup>[1.18](https://systems-analysis.info/eng/PromptRobust_(benchmark)#cite_ref-arxiv-main_1-18)</sup> <sup>[1.19](https://systems-analysis.info/eng/PromptRobust_(benchmark)#cite_ref-arxiv-main_1-19)</sup> <sup>[1.20](https://systems-analysis.info/eng/PromptRobust_(benchmark)#cite_ref-arxiv-main_1-20)</sup> <sup>[1.21](https://systems-analysis.info/eng/PromptRobust_(benchmark)#cite_ref-arxiv-main_1-21)</sup> <sup>[1.22](https://systems-analysis.info/eng/PromptRobust_(benchmark)#cite_ref-arxiv-main_1-22)</sup> <sup>[1.23](https://systems-analysis.info/eng/PromptRobust_(benchmark)#cite_ref-arxiv-main_1-23)</sup> <sup>[1.24](https://systems-analysis.info/eng/PromptRobust_(benchmark)#cite_ref-arxiv-main_1-24)</sup> <sup>[1.25](https://systems-analysis.info/eng/PromptRobust_(benchmark)#cite_ref-arxiv-main_1-25)</sup> <sup>[1.26](https://systems-analysis.info/eng/PromptRobust_(benchmark)#cite_ref-arxiv-main_1-26)</sup> <sup>[1.27](https://systems-analysis.info/eng/PromptRobust_(benchmark)#cite_ref-arxiv-main_1-27)</sup> <sup>[1.28](https://systems-analysis.info/eng/PromptRobust_(benchmark)#cite_ref-arxiv-main_1-28)</sup> <sup>[1.29](https://systems-analysis.info/eng/PromptRobust_(benchmark)#cite_ref-arxiv-main_1-29)</sup> <sup>[1.30](https://systems-analysis.info/eng/PromptRobust_(benchmark)#cite_ref-arxiv-main_1-30)</sup> <sup>[1.31](https://systems-analysis.info/eng/PromptRobust_(benchmark)#cite_ref-arxiv-main_1-31)</sup> <sup>[1.32](https://systems-analysis.info/eng/PromptRobust_(benchmark)#cite_ref-arxiv-main_1-32)</sup> <sup>[1.33](https://systems-analysis.info/eng/PromptRobust_(benchmark)#cite_ref-arxiv-main_1-33)</sup> <sup>[1.34](https://systems-analysis.info/eng/PromptRobust_(benchmark)#cite_ref-arxiv-main_1-34)</sup> <sup>[1.35](https://systems-analysis.info/eng/PromptRobust_(benchmark)#cite_ref-arxiv-main_1-35)</sup> "PromptBench: Towards Evaluating the Robustness of Large Language Models on Adversarial Prompts." *arXiv*. <a href="https://arxiv.org/abs/2306.04528" class="external autonumber" rel="nofollow">[1]</a></span>
2.  <span id="cite_note-towardsai-2">↑ <sup>[2.00](https://systems-analysis.info/eng/PromptRobust_(benchmark)#cite_ref-towardsai_2-0)</sup> <sup>[2.01](https://systems-analysis.info/eng/PromptRobust_(benchmark)#cite_ref-towardsai_2-1)</sup> <sup>[2.02](https://systems-analysis.info/eng/PromptRobust_(benchmark)#cite_ref-towardsai_2-2)</sup> <sup>[2.03](https://systems-analysis.info/eng/PromptRobust_(benchmark)#cite_ref-towardsai_2-3)</sup> <sup>[2.04](https://systems-analysis.info/eng/PromptRobust_(benchmark)#cite_ref-towardsai_2-4)</sup> <sup>[2.05](https://systems-analysis.info/eng/PromptRobust_(benchmark)#cite_ref-towardsai_2-5)</sup> <sup>[2.06](https://systems-analysis.info/eng/PromptRobust_(benchmark)#cite_ref-towardsai_2-6)</sup> <sup>[2.07](https://systems-analysis.info/eng/PromptRobust_(benchmark)#cite_ref-towardsai_2-7)</sup> <sup>[2.08](https://systems-analysis.info/eng/PromptRobust_(benchmark)#cite_ref-towardsai_2-8)</sup> <sup>[2.09](https://systems-analysis.info/eng/PromptRobust_(benchmark)#cite_ref-towardsai_2-9)</sup> <sup>[2.10](https://systems-analysis.info/eng/PromptRobust_(benchmark)#cite_ref-towardsai_2-10)</sup> <sup>[2.11](https://systems-analysis.info/eng/PromptRobust_(benchmark)#cite_ref-towardsai_2-11)</sup> <sup>[2.12](https://systems-analysis.info/eng/PromptRobust_(benchmark)#cite_ref-towardsai_2-12)</sup> <sup>[2.13](https://systems-analysis.info/eng/PromptRobust_(benchmark)#cite_ref-towardsai_2-13)</sup> <sup>[2.14](https://systems-analysis.info/eng/PromptRobust_(benchmark)#cite_ref-towardsai_2-14)</sup> <sup>[2.15](https://systems-analysis.info/eng/PromptRobust_(benchmark)#cite_ref-towardsai_2-15)</sup> <sup>[2.16](https://systems-analysis.info/eng/PromptRobust_(benchmark)#cite_ref-towardsai_2-16)</sup> <sup>[2.17](https://systems-analysis.info/eng/PromptRobust_(benchmark)#cite_ref-towardsai_2-17)</sup> <sup>[2.18](https://systems-analysis.info/eng/PromptRobust_(benchmark)#cite_ref-towardsai_2-18)</sup> <sup>[2.19](https://systems-analysis.info/eng/PromptRobust_(benchmark)#cite_ref-towardsai_2-19)</sup> "Prompt Robustness: How to Measure and How to Enhance." *Towards AI*. <a href="https://towardsai.net/p/l/prompt-robustness-how-to-measure-and-how-to-enhance" class="external autonumber" rel="nofollow">[2]</a></span>
3.  <span id="cite_note-arxiv-abs-3">↑ <sup>[3.0](https://systems-analysis.info/eng/PromptRobust_(benchmark)#cite_ref-arxiv-abs_3-0)</sup> <sup>[3.1](https://systems-analysis.info/eng/PromptRobust_(benchmark)#cite_ref-arxiv-abs_3-1)</sup> <sup>[3.2](https://systems-analysis.info/eng/PromptRobust_(benchmark)#cite_ref-arxiv-abs_3-2)</sup> <sup>[3.3](https://systems-analysis.info/eng/PromptRobust_(benchmark)#cite_ref-arxiv-abs_3-3)</sup> "PromptRobust: Towards Evaluating the Robustness of Large Language Models on Adversarial Prompts." *arXiv*. <a href="https://arxiv.org/abs/2306.04528" class="external autonumber" rel="nofollow">[3]</a></span>
4.  <span id="cite_note-cmu-realer-4">[↑](https://systems-analysis.info/eng/PromptRobust_(benchmark)#cite_ref-cmu-realer_4-0) "Realer Toxicity Prompts (RTP-2.0): Multilingual and Adversarial Prompts for Evaluating Neural Toxic Degeneration in Large Language Models." *Language Technologies Institute - School of Computer Science - Carnegie Mellon University*. <a href="https://www.lti.cs.cmu.edu/research/research-articles/realer-toxicity-prompts.html" class="external autonumber" rel="nofollow">[4]</a></span>
