Commit ·
8c67043
1
Parent(s): 6eacca0
docs: improve evaluation section in README to focus on workflow
Browse files
README.md
CHANGED
|
@@ -9,7 +9,9 @@ pinned: false
|
|
| 9 |
|
| 10 |
# 🧠 NexusGraph AI
|
| 11 |
|
| 12 |
-
> **High Distinction Project**: An advanced "Agentic" Retrieval-Augmented Generation system that uses Graph Theory (LangGraph),
|
|
|
|
|
|
|
| 13 |
|
| 14 |
## 🚀 The "Master's Level" Difference
|
| 15 |
|
|
@@ -96,10 +98,10 @@ pytest
|
|
| 96 |
---
|
| 97 |
|
| 98 |
## 📊 Evaluation (The Science)
|
| 99 |
-
We use an **LLM-as-a-Judge** approach (`run_evals.py`) to
|
| 100 |
-
* **Faithfulness**:
|
| 101 |
-
* **Relevancy**:
|
| 102 |
-
* *
|
| 103 |
|
| 104 |
---
|
| 105 |
|
|
|
|
| 9 |
|
| 10 |
# 🧠 NexusGraph AI
|
| 11 |
|
| 12 |
+
> **High Distinction Project**: An advanced "Agentic" Retrieval-Augmented Generation system that uses Graph Theory (LangGraph), Structured Retrieval (SQLite), and Self-Correction to answer complex queries.
|
| 13 |
+
|
| 14 |
+
*This repository contains the codebase for **NexusGraph AI**, deployed live on Hugging Face Spaces as [Gemini-Rag-Fastapi-Pro](https://huggingface.co/spaces/lvvignesh2122/Gemini-Rag-Fastapi-Pro).*
|
| 15 |
|
| 16 |
## 🚀 The "Master's Level" Difference
|
| 17 |
|
|
|
|
| 98 |
---
|
| 99 |
|
| 100 |
## 📊 Evaluation (The Science)
|
| 101 |
+
We use an **LLM-as-a-Judge** approach (`run_evals.py`) to programmatically score queries based on:
|
| 102 |
+
* **Faithfulness**: Verifying if the answer is derived strictly from the context (hallucination detection).
|
| 103 |
+
* **Relevancy**: Measuring how directly the answer addresses the user query.
|
| 104 |
+
* *Audit Execution*: Running `python run_evals.py` parses the production logs (`rag_eval_logs.jsonl`) and generates average system metrics.
|
| 105 |
|
| 106 |
---
|
| 107 |
|