tarzanagh commited on
Commit
b0109c7
·
verified ·
1 Parent(s): c40dc31

Remove HippoRAG arxiv link to fix auto-detected paper

Browse files
Files changed (1) hide show
  1. README.md +6 -9
README.md CHANGED
@@ -5,12 +5,9 @@ tags:
5
  - rag
6
  - flow-diffusion
7
  - graph-rag
8
- - multihop-qa
9
- - query-aware
10
- - retrieval-augmented-generation
11
  - iclr2026
12
- arxiv: 2503.XXXXX
13
- paper_url: https://openreview.net/forum?id=n28wnc2QTc
14
  ---
15
 
16
  # QAFD-RAG
@@ -39,9 +36,9 @@ pip install -r requirements.txt
39
  # 2. Set your OpenAI API key (required for LLM and answer generation)
40
  export OPENAI_API_KEY="sk-..."
41
 
42
- # 3. KGs are already included (no download needed when cloned from HuggingFace)
43
- # If cloned from GitHub instead, download KGs:
44
- # huggingface-cli download tarzanagh/QAFD-RAG --include "kg/multihop/*" --local-dir .
45
 
46
  # 4. Run a benchmark
47
  # Note: First run for multihop will auto-download the nvidia/NV-Embed-v2
@@ -61,7 +58,7 @@ QAFD-RAG supports two knowledge graph representations, both using the same Query
61
 
62
  | | **Entity Graph** | **Passage-Entity Graph** |
63
  |---|---|---|
64
- | **Nodes** | Entities + relationships | Entities + passages + facts ([Gutiérrez et al., 2024](https://arxiv.org/abs/2405.14831)) |
65
  | **Extraction** | LLM entity/relationship extraction | OpenIE (NER + triple extraction) |
66
  | **Edges** | Entity-entity relationships | Fact edges + passage edges + synonymy edges |
67
  | **QAFD traversal** | Flow reaches entities, passages looked up after | Flow reaches passages directly as graph nodes |
 
5
  - rag
6
  - flow-diffusion
7
  - graph-rag
 
 
 
8
  - iclr2026
9
+ language:
10
+ - en
11
  ---
12
 
13
  # QAFD-RAG
 
36
  # 2. Set your OpenAI API key (required for LLM and answer generation)
37
  export OPENAI_API_KEY="sk-..."
38
 
39
+ # 3. Download pre-built KGs (recommended saves hours of build time + API costs)
40
+ huggingface-cli download tarzanagh/QAFD-RAG --include "kg/multihop/*" --local-dir .
41
+ huggingface-cli download tarzanagh/QAFD-RAG --include "kg/ultradomain/*" --local-dir .
42
 
43
  # 4. Run a benchmark
44
  # Note: First run for multihop will auto-download the nvidia/NV-Embed-v2
 
58
 
59
  | | **Entity Graph** | **Passage-Entity Graph** |
60
  |---|---|---|
61
+ | **Nodes** | Entities + relationships | Entities + passages + facts |
62
  | **Extraction** | LLM entity/relationship extraction | OpenIE (NER + triple extraction) |
63
  | **Edges** | Entity-entity relationships | Fact edges + passage edges + synonymy edges |
64
  | **QAFD traversal** | Flow reaches entities, passages looked up after | Flow reaches passages directly as graph nodes |