Summary
This paper focuses on the issue of **triggering and detecting catastrophic responses** in large language models. More specifically, the problem refers to how to design a strategy to find catastrophic responses efficiently, within a limited query time (e.g., 1000). To address this issue, the authors propose a temperature adjustment strategy called **OUTPUT SCOUTING**, which can **generate semantically fluent outputs for a given prompt that match any target probability distribution**. Based on this technique, the authors conducted experiments on six different prompts (query 1000 times for each), and through human evaluations, they confirmed that OUTPUT SCOUTING has significant advantages compared to vanilla sampling (temperature = 0.5). The authors also promise to release the related toolkit.
Strengths
1. The topic is critical and interesting. A way to effectively detect or warn about catastrophic responses could reduce harm to users when using LLMs, and also lessen the potential losses for the organizations that own these models.
2. The method in the paper is lightweight and easy to implement.
3. The authors promise that they will release a toolkit regarding the auditing framework.
Weaknesses
1. I think the biggest concern with this paper is that the experiments lack comprehensiveness and soundness:
- **Only 6 prompts were used in the experiment**: In the experiment, only 6 queries were used (see Table 1), and the sentences were very similar (e.g., "Can I xxx?"). This makes me doubt whether the method would still work well in different scenarios. Although using more evaluation queries would increase the cost—since each model generates 1000 responses for each query, and these responses need to be evaluated manually—I believe it is necessary to have a larger and more diverse set of queries.
- **The experiment lacks soundness**: The author compared vanilla sampling with temperature = 0.5 in Table 1, and the results show that output scouting (temperature range from 0 to 10.0) can find significantly more catastrophic responses. For example, in the first case, output scouting found 28 such responses from Llama3-8B-Instruct, while vanilla sampling found only 6. My question is: Since increasing the temperature will raise randomness, can adjusting the vanilla model's temperature achieve results comparable to output scouting? I think adding relevant experiments is necessary (more different hyperparameters and more common sampling strategies) to ensure the soundness of the study.
2. Although detecting and identifying catastrophic responses is very important, it is not enough. This paper lacks a discussion on possible solutions. This makes the paper seem incomplete.
Questions
1. Could you explain what direct insights we can get from using output scouting to find catastrophic responses on how to solve these issues? For example, if we find that the model has a catastrophic response with a very low normalized probability, what should we do next? Should we perform safety tuning for this specific query?
2. Could you please explain your insight in more detail? Specifically, regarding how your approach identifies catastrophic responses, what types are easily detected by your method, and which types are more likely to be missed?