You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Lab_6_Retrievers/README.md
+20-30Lines changed: 20 additions & 30 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# Lab 6 - GraphRAG Retrievers
2
2
3
-
In this lab, you'll learn how to implement Graph Retrieval-Augmented Generation (GraphRAG) using different retriever strategies with the Neo4j GraphRAG Python package. You'll explore vector search, combine vector search with Cypher queries for richer context, and use natural language to generate Cypher queries automatically.
3
+
In this lab, you'll learn how to use natural language to query your knowledge graph, extract structured entities from text, and work with a complete dataset. You'll use Text2Cypher to convert questions into Cypher queries, build richer graphs through entity extraction, and see the full power of GraphRAG with real-world data.
4
4
5
5
## Prerequisites
6
6
@@ -12,34 +12,33 @@ Before starting, make sure you have:
12
12
13
13
## Lab Overview
14
14
15
-
This lab consists of three notebooks that demonstrate different retrieval strategies:
15
+
This lab consists of three notebooks:
16
16
17
-
### 01_vector_retriever.ipynb - Vector Retriever
18
-
Learn the fundamentals of semantic search with vector retrieval:
19
-
- Set up a VectorRetriever using Neo4j's vector index
20
-
- Perform semantic similarity searches on your knowledge graph
21
-
- Use GraphRAG to combine vector search with LLM-generated answers
22
-
- Understand how vector search finds contextually similar content
0 commit comments