Skip to content

TXT2KG multistage pipeline #10300

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 31 commits into
base: latest-txt2kg
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
55f33bf
Rename tech_qa.py to txt2kg_rag.py
puririshi98 Apr 29, 2025
fc5c383
Update README.md
puririshi98 Apr 29, 2025
ed630ba
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Apr 29, 2025
67a3274
Update README.md
puririshi98 Apr 29, 2025
a500699
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Apr 29, 2025
db12f1f
dropping g_retriever utils since its stale and the webqsp/cwq dataset…
puririshi98 Apr 29, 2025
270c89e
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Apr 29, 2025
d36c799
Add VectorRAG (#10229)
Kh4L Apr 29, 2025
2e4da2c
LLM: format prompt with hf prompt format if available (#10213)
Kh4L Apr 29, 2025
f520c03
Update nlp/llm.py chat template (#10237)
Kh4L Apr 29, 2025
847e5f7
TXT2KG refactor v2 phase 1 (#10240)
Kh4L May 2, 2025
875e40e
TXT2KG refactor v2 more (#10244)
Kh4L May 5, 2025
5254403
TXT2KG refactor v2 config + vanillaRAG (#10252)
Kh4L May 7, 2025
5c8d0e7
TXT2KG better path handling (#10260)
Kh4L May 8, 2025
e203487
TXT2KG add skip graphrag arg (#10262)
Kh4L May 9, 2025
04c8dca
Merge branch 'latest-txt2kg' into txt2kg-v2
puririshi98 May 12, 2025
cf62f08
TXT2KG assert nim key (#10266)
Kh4L May 12, 2025
5f264d1
TXT2KG assert nim key 2 (#10267)
Kh4L May 12, 2025
fa1574f
TXT2KG fix skip grag arg (#10269)
Kh4L May 13, 2025
eabb513
TXT2KG skip training when frozen + no gnn (#10272)
Kh4L May 13, 2025
c88e21f
TXT2KG fix skip grag 2 (#10273)
Kh4L May 14, 2025
cb3a575
TXT2KG hide nim key (#10277)
Kh4L May 20, 2025
eb42105
TXT2KG add SGFormer (#10280)
Kh4L May 20, 2025
16ccb70
Add TXT2KG multistage pipeline
Kh4L May 9, 2025
4d3923f
update
Kh4L May 23, 2025
2fda682
update
Kh4L May 23, 2025
e0fb4a1
Merge remote-tracking branch 'upstream/latest-txt2kg' into txt2kg_mul…
Kh4L Jun 2, 2025
86f7adc
update
Kh4L Jun 5, 2025
29addcf
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Jun 5, 2025
5d0fb8e
update
Kh4L Jun 9, 2025
38c4b5d
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Jun 9, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion torch_geometric/nn/nlp/llm.py
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,7 @@ def _get_embeds(
},
{
"role": "user",
"content": f"{ctx} - {question[i]}"
"content": f"{ctx}{question[i]}"
},
]
text = self.tokenizer.apply_chat_template(
Expand Down
Loading
Loading