What is the role of self-consistency verification in AirRAG?

Question

Answers ( 1 )

    0
    2025-03-28T02:29:35+00:00

    Self-consistency verification in AirRAG involves selecting the optimal answer node using Jaccard similarity (`jcdScore = (1/N) * Σ (|Ai ∩ Aj| / |Ai ∪ Aj|)`) and text embeddings (`embScore = (1/N) * Σ cos(Ei, Ej)`), where `Ei` is the embedding vector. This ensures the consistency and reliability of the selected answer.

Leave an answer