-
Notifications
You must be signed in to change notification settings - Fork 124
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* assests and app name * update README * demo gifs * talk with github codespaces * talk with github codespaces * gitignore * linted * added version * link fix * added local llm tag * crag * link fix * lint * llm tags * non-clickable badge * non-clickable badge * fix * tutorial llm tags * added instructions and fix * colab fix * fix * formatted * hybrid search and rag colab * colab format * python test * node test * python test * blog link update * rag mlx * myntra search engine app * link fix * CrewAI Example * lint * node test * node test * node test * added readme * support for Gemini Pro * fix * chunking techniques * lint * Locally RAG from Scratch * lint * llama3 added * link finx * sdk manual cli chatbot phidata * sdk manual cli chatbot phidata * link fix * tags * advanced * update readme * remove key * lint * formatting fixes * lint * updated image * added demo image * change autogen notebook * lint * lint * rag evaluation with ragas
- Loading branch information
1 parent
a7e6d75
commit d6ba79d
Showing
5 changed files
with
1,778 additions
and
586 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1,158 changes: 1,158 additions & 0 deletions
1,158
examples/Evaluating_RAG_with_RAGAs/Evaluating_RAG_with_RAGAs.ipynb
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# Evaluating RAG with RAGAs and GPT-4o | ||
<a href="https://colab.research.google.com/github/lancedb/vectordb-recipes/blob/main/examples/Evaluating_RAG_with_RAGAs/Evaluating_RAG_with_RAGAs.ipynb"><img src="https://colab.research.google.com/assets/colab-badge.svg" alt="Open In Colab"></a> | ||
|
||
|
||
Ragas is a **framework for evaluating Retrieval Augmented Generation (RAG) pipelines**. | ||
|
||
Ragas provides you with the tools/metrics based on the latest research for evaluating LLM-generated text to give you insights about your RAG pipeline. Ragas can be integrated with your CI/CD to provide continuous checks to ensure performance. | ||
|
||
GPT4-o is used as an LLM to generate responses out of semantically close context chunks. | ||
|
||
![flow](../../assets/rag_evaluation_flow.png) | ||
|
||
Try it out on Colab - <a href="https://colab.research.google.com/github/lancedb/vectordb-recipes/blob/main/examples/Evaluating_RAG_with_RAGAs/Evaluating_RAG_with_RAGAs.ipynb"><img src="https://colab.research.google.com/assets/colab-badge.svg" alt="Open In Colab"></a> |
Oops, something went wrong.