Response to further questions
Thanks for the further questions. Please find our answers below.
> When the author used SAFE for evaluation, they employed Google search. For each query, how many search results were used to conduct fact verification?
When using SAFE for evaluation, we returned 3 search results per query from the Server API. We discussed this in Appendix C.1 Line 799 and ablated it in Appendix C.6 Line 881-896 and Figure 13. We are happy to make this clearer in the revised paper by adding this number into our main paper in the section first presenting SAFE (Section 3).
> Although the author states that large language models do not always follow human instructions, looking at the sample tables 16-18 provided by the author, there are too many repeated queries. I'm somewhat concerned whether your query generation strategy is truly effective.
First, there are many other atomic claims whose fact-checking queries don’t have duplicates. One example is that for the question "Who is Antoni Gaudí?", the fact-checking queries from SAFE for the claim "The Sagrada Família is perhaps Antoni Gaudí's most famous work" are:
- Is the Sagrada Família considered Antoni Gaudí's most famous work?
- What are some other notable works by Antoni Gaudí besides the Sagrada Família?
- Antoni Gaudí Sagrada Família famous work evidence
- Did Antoni Gaudí complete the Sagrada Família church before his death?
- Antoni Gaudí Sagrada Família completion date
Second, there are indeed some claims for which there are repeated fact-checking queries, like the ones we showed in Table 16 and 18. Our insights are twofold:
- On the one hand, prompting models with better instruction-following capabilities and rewording the prompt to emphasize diversity may reduce the duplication of queries.
- On the other hand, some claims are easier to be verified by fewer than 5 queries, in which case the model or human may not be able to or even need to come up with that many different queries. In this case, the model may use duplicated queries since the SAFE pipeline forces the model to use exactly 5 queries. Empirically, we see that claims that only contain **objective** words can be fact-checked more easily with less diverse queries, whereas claims with **subjective** judgements (like "famous" in the above example and "significant" in main text Figure 3, between Line 105 and 106) need more diverse queries to collect evidence from multiple angles for the LLM to finally make a judgment.
Inspired by the above observations, an idea to improve SAFE is to add an option for the LLM to stop generating more queries when it determines that the collected evidence is enough to judge whether the claim is supported. Right now we instruct the LLM to issue 5 search queries using the instruction "To do this, you are allowed to issue ONE Google Search query that you think will allow you to find additional useful evidence." We do this regardless of whether the already-collected evidence is enough to make the final annotation. The change should reduce cost and focus resources on more-difficult claims.
Thanks again for bringing this up and inspiring us to further improve our method. We will also make the above clarifications in our manuscript.
> When the author used an LLM agent for fact annotation, they re-annotated the results where SAFE and human raters disagreed by using Google search...
In Section 4, we indeed manually-annotated facts where SAFE and human raters from Min et al. 2023 disagreed. We did this because we wanted to answer the question of "when SAFE and human raters disagree, is SAFE usually correct (and therefore human raters were incorrect) or are the human raters usually correct (and therefore SAFE was incorrect)?" We believe that answering this question helps us understand how SAFE performs as an automated factuality annotator relative to crowdsourced humans.
In this experiment, we assumed that our annotations ("researcher + full-internet access") were ground-truth labels, since we believe that these expert-level annotations with more available resources and (presumably) more carefulness are more representative of true factuality relative to crowdsourced humans. As stated in our previous response, however, this does not mean that **all** of the results from Min et al. 2023 are in question; we only note that when SAFE and the annotations from Min et al. 2023 disagree (which could indicate that a fact is difficult to verify), SAFE is often correct. Indeed, the crowdsourced annotations from Min et al. 2023 are only "incorrect" relative to our definition of factuality for these disagreement cases. Since there is still a 76% agreement rate and we saw there are extremely few facts (2/50 in our sampled batch, or 4%) where both crowdsource human annotators and SAFE would return incorrect annotations, we posit that almost all of these 76% of the 16k facts were indeed correctly annotated.
Please let us know if we can clarify this further. Thanks again for the inspiring questions.