RAG Evaluator is a Python library for evaluating Retrieval-Augmented Generation (RAG) systems. It provides various metrics to evaluate the quality of generated text against reference text.
You can install the library using pip:
pip install rag-evaluator
Here's how to use the RAG Evaluator library:
from rag_evaluator import RAGEvaluator
# Initialize the evaluator
evaluator = RAGEvaluator()
# Input data
question = "What are the causes of climate change?"
response = "Climate change is caused by human activities."
reference = "Human activities such as burning fossil fuels cause climate change."
# Evaluate the response
metrics = evaluator.evaluate_all(question, response, reference)
# Print the results
print(metrics)
To run the web app:
streamlit run app.py
The RAG Evaluator provides the following metrics:
BLEU (0-100): Measures the overlap between the generated output and reference text based on n-grams.
ROUGE-1 (0-1): Measures the overlap of unigrams between the generated output and reference text.
BERT Score (0-1): Evaluates the semantic similarity using BERT embeddings (Precision, Recall, F1).
Perplexity (1 to ∞, lower is better): Measures how well a language model predicts the text.
Diversity (0-1): Measures the uniqueness of bigrams in the generated output.
Racial Bias (0-1): Detects the presence of biased language in the generated output.
MAUVE (0-1): MAUVE captures contextual meaning, coherence, and fluency while measuring both semantic similarity and stylistic alignment .
METEOR (0-1): Calculates semantic similarity considering synonyms and paraphrases.
CHRF (0-1): Computes Character n-gram F-score for fine-grained text similarity.
Flesch Reading Ease (0-100): Assesses text readability.
To run the tests, use the following command:
python -m unittest discover -s rag_evaluator -p "test_*.py"
This project is licensed under the MIT License. See the LICENSE file for details.
Contributions are welcome! If you have any improvements, suggestions, or bug fixes, feel free to create a pull request (PR) or open an issue on GitHub. Please ensure your contributions adhere to the project's coding standards and include appropriate tests.
If you have any questions or need further assistance, feel free to reach out via email.
Python
100.0%
RAG Evaluator is a Python library for evaluating Retrieval-Augmented Generation (RAG) systems. It provides various metrics to evaluate the quality of generated text against reference text.
You can install the library using pip:
pip install rag-evaluator
Here's how to use the RAG Evaluator library:
from rag_evaluator import RAGEvaluator
# Initialize the evaluator
evaluator = RAGEvaluator()
# Input data
question = "What are the causes of climate change?"
response = "Climate change is caused by human activities."
reference = "Human activities such as burning fossil fuels cause climate change."
# Evaluate the response
metrics = evaluator.evaluate_all(question, response, reference)
# Print the results
print(metrics)
To run the web app:
streamlit run app.py
The RAG Evaluator provides the following metrics:
BLEU (0-100): Measures the overlap between the generated output and reference text based on n-grams.
ROUGE-1 (0-1): Measures the overlap of unigrams between the generated output and reference text.
BERT Score (0-1): Evaluates the semantic similarity using BERT embeddings (Precision, Recall, F1).
Perplexity (1 to ∞, lower is better): Measures how well a language model predicts the text.
Diversity (0-1): Measures the uniqueness of bigrams in the generated output.
Racial Bias (0-1): Detects the presence of biased language in the generated output.
MAUVE (0-1): MAUVE captures contextual meaning, coherence, and fluency while measuring both semantic similarity and stylistic alignment .
METEOR (0-1): Calculates semantic similarity considering synonyms and paraphrases.
CHRF (0-1): Computes Character n-gram F-score for fine-grained text similarity.
Flesch Reading Ease (0-100): Assesses text readability.
To run the tests, use the following command:
python -m unittest discover -s rag_evaluator -p "test_*.py"
This project is licensed under the MIT License. See the LICENSE file for details.
Contributions are welcome! If you have any improvements, suggestions, or bug fixes, feel free to create a pull request (PR) or open an issue on GitHub. Please ensure your contributions adhere to the project's coding standards and include appropriate tests.
If you have any questions or need further assistance, feel free to reach out via email.
Python
100.0%