We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1e07768 commit efbecf8Copy full SHA for efbecf8
README.md
@@ -54,7 +54,6 @@ pip install -e .
54
This is a small example program you can run to see ragas in action!
55
```python
56
57
-from ragas.metrics import factuality, answer_relevancy, context_relevancy
58
from ragas import evaluate
59
import os
60
@@ -64,7 +63,7 @@ ds = Dataset({
64
63
features: ['question','context','answer'],
65
num_rows: 25
66
})
67
-results = evaluate(ds, metrics=[nli, answer_relevancy, context_relevancy])
+results = evaluate(ds)
68
69
```
70
If you want a more in-depth explanation of core components, check out our quick-start notebook
0 commit comments