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
Issue: Differences between tutorials and source code in **General
Purpose Metrics**
link :
https://docs.ragas.io/en/latest/concepts/metrics/available_metrics/general_purpose/
Two updates:
1. Changing library calls
before
```python
from ragas.metrics import InstanceRubricsScore
...
scorer = InstanceRubricsScore(llm=evaluator_llm)
```
after
```python
from ragas.metrics import InstanceRubrics
...
scorer = InstanceRubrics(llm=evaluator_llm)
```
2. Sample define
before
```
SingleTurnSample(
```
after
```
sample = SingleTurnSample(
```
0 commit comments